我正在尝试使用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)
,但这并没有解决问题。
有任何想法吗?
提前致谢。