Aspect ratio in UIImageView

前端 未结 1 1271
广开言路
广开言路 2020-12-31 08:20

I got app which can add photo from camera or gallery. After adding each photo showes in UIImageView. But they show with bad aspect ratio. Photoes are extended o

相关标签:
1条回答
  • 2020-12-31 09:25

    Doing myImageView.contentMode = UIViewContentModeScaleAspectFit; is one option.

    But it isn't enough because it changes the aspect ratio of the image, but it doesn't change the source image.

    The only way to do that is to use the UIGraphicsImageContext as explained there: Resize UIImage with aspect ratio?

    0 讨论(0)
提交回复
热议问题