2

我使用一种方法在我的 iOS 应用程序上获取圆形图片,该方法在 iphone 3 上运行良好。我的问题是,一旦我在 iphone 4 或更高版本上尝试它,图片质量就会很差。

有什么办法,我可以把我的代码转过来获得高分辨率的圆形图片吗?

-(void) setRoundedView:(UIImageView *)imageView picture: (UIImage *)picture toDiameter:(float)newSize{

UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 1.0);

[[UIBezierPath bezierPathWithRoundedRect:imageView.bounds
                            cornerRadius:100.0] addClip];

CGRect frame=imageView.bounds;
frame.size.width=newSize;
frame.size.height=newSize;
[picture drawInRect:frame];

imageView.image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();
}

非常感谢您的帮助!

4

1 回答 1

1

问题是您如何定义图像上下文。您正在指定 1.0 比例,但在视网膜屏幕上应该是 2.0。

相反,您可以使用 0.0 默认为原生质量:

UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 0.0);
于 2014-07-20T06:37:58.480 回答