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
This problem is caused because the scale is not always a whole number in the croppedImage function.
When the rect is scaled up, non full pixels are often created. When the CGImageCreateWithImageInRect cropping function crops the image, it rounds those non full pixels up!
This problem is caused because the scale is not always a whole number in the croppedImage function.
When the rect is scaled up, non full pixels are often created. When the CGImageCreateWithImageInRect cropping function crops the image, it rounds those non full pixels up!
This can be solved by changing this
to this
The text was updated successfully, but these errors were encountered: