我正在尝试在UIImage上生成UIView的缩放版本。
到目前为止,我的代码创建了UIImage,然后对其进行了缩放,但实际上我需要先缩放它,然后生成UIImage以获得性能。
以下是代码:
UIGraphicsBeginImageContext([aView bounds].size);
[[aView layer] renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIGraphicsBeginImageContext(aSize);
[image drawInRect:CGRectMake(0, 0, aSize.width, aSize.height)];
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
我们的想法是让第一个代码块创建具有缩放大小的图像上下文,并在相同的上下文中呈现aView
也进行缩放。第二个区块不是必需的。
答案 0 :(得分:1)
解决方案是使用UIGraphicsBeginImageContextWithOptions(size, isOpaque, scale);