We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! this problem happens when the crop size is not a square, like for example 320x80.
Any suggestions?
Thanks!
The text was updated successfully, but these errors were encountered:
fixes issue #21
4b7077f
this fixes the issue where a landscape croparea did work. thanks @ziweizhou for fixing this!
This has resulted in problems when cropping to squares (and maybe more not sure). See issue #23
Scale is now sometimes determined for the wrong axis because image scale should be based on image width and height, NOT crop width and height.
instead of this
if (self.cropSize.width > self.cropSize.height)
change it to this
if (self.imageToCrop.size.width > self.imageToCrop.size.height)
Sorry, something went wrong.
No branches or pull requests
Hello! this problem happens when the crop size is not a square, like for example 320x80.
Any suggestions?
Thanks!
The text was updated successfully, but these errors were encountered: