You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the Package, however, the characters are sometimes not fully displayed and they don't fit in the frame.
I set the number of characters to 5.
Only 4 are displayed instead of 5:
The letter x is very hard to read:
The text was updated successfully, but these errors were encountered:
I also had the problem. My approach was to rewrite the drawing method.
I struggled a lot with rotation and positioning until I changed the following lines to Captcha.cs >BuildRenderTree canvas.Save(); canvas.Translate(x, y); canvas.RotateDegrees(l.Angle); canvas.DrawText(l.Value, x, y, paint); canvas.Restore();
into
canvas.Save(); canvas.RotateDegrees(l.Angle, x, y); canvas.DrawText(l.Value, x, y, paint); canvas.Restore();
Thanks for the Package, however, the characters are sometimes not fully displayed and they don't fit in the frame.
I set the number of characters to 5.
Only 4 are displayed instead of 5:
The letter x is very hard to read:
The text was updated successfully, but these errors were encountered: