16

我正在尝试使用UIImage'sdrawInRect:方法绘制图像。这是代码:

UIImage *image = [UIImage imageNamed:@"OrangeBadge.png"];

UIGraphicsBeginImageContext(image.size);

[image drawInRect:CGRectMake(0, 0, image.size.width, image.size.height)];

UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

问题是生成的图像是模糊的。这是与源图像(左侧)相比的结果图像(右侧):

源图像和模糊图像

我都试过了CGContextSetAllowsAntialiasing(UIGraphicsGetCurrentContext(), NO) CGContextSetShouldAntialias(UIGraphicsGetCurrentContext(), NO),但这并没有解决问题。

有任何想法吗?

提前致谢。

4

1 回答 1

30

如果您在 Retina 设备上进行开发,则问题可能与您的图形上下文的分辨率有关。你会尝试:

UIGraphicsBeginImageContextWithOptions(size, NO, 2.0f);

这将启用视网膜分辨率。此外,您的图像应该在@2x 分辨率下可用,这样才能正常工作。

如果你也想支持非视网膜设备,你可以使用:

if ([UIScreen instancesRespondToSelector:@selector(scale)]) {
    UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0f);
} else {
    UIGraphicsBeginImageContext(newSize);
}
于 2012-09-14T15:28:41.123 回答