我创建了一个包含高分辨率图像的 UIImageView。问题是该图像的分辨率太高而无法放入 imageView。imageView 的大小是 92 x 91(所以它很小)。它包含一个 UIImage,其分辨率太高,因此在 UIImageView 中看起来很难看。那么如何降低该 UIImage 的分辨率呢?
我的 UIImageView 代码:
UIImageView *myImageView = [[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:pngFilePath]];
myImageView.frame = CGRectMake(212.0, 27, 92,91);