UIImageView错误地渲染图像的大小。使用Scale Aspect Fit,如果UIImageView是正方形,则图像是正确的宽高比,并且在图像未填充的区域具有透明性。
//Image is Square & Correct Size
var imageView = UIImageView(frame: CGRectMake(0, 50, 320, 320))
imageView.clipsToBounds = true
imageView.contentMode = UIViewContentMode.ScaleAspectFit
//Image is Rectangle & Incorrect Size
var imageView = UIImageView(frame: CGRectMake(0, 50, 320, 450))
imageView.clipsToBounds = true
imageView.contentMode = UIViewContentMode.ScaleAspectFit
UIImageView需要触摸边缘并在屏幕的顶部和底部具有透明的空间,并且内部图像需要保持其原始比例而不是拉伸(stretch)得更高。我已经附上了两个图像,分别显示UIImageView中的图像是如何呈现的。
最佳答案
我向UIImageView添加了自动调整大小的蒙版,它现在显示正确的比例。
imageView.autoresizingMask = UIViewAutoresizing.FlexibleBottomMargin | UIViewAutoresizing.FlexibleHeight | UIViewAutoresizing.FlexibleRightMargin | UIViewAutoresizing.FlexibleLeftMargin | UIViewAutoresizing.FlexibleTopMargin | UIViewAutoresizing.FlexibleWidth
imageView.contentMode = UIViewContentMode.ScaleAspectFit
这个答案对我有帮助:Captured photo is stretched with AVCaptureSession sessionPreset = AVCaptureSessionPresetPhoto,因为我正在使用通过手机相机拍摄的图像。
关于ios - Swift UIImageView拉伸(stretch)外观,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27961884/