从UIView创建缩放的UIImage

时间:2011-11-10 21:05:05

标签: iphone uiview uiimage core-graphics

我正在尝试在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也进行缩放。第二个区块不是必需的。

1 个答案:

答案 0 :(得分:1)

解决方案是使用UIGraphicsBeginImageContextWithOptions(size, isOpaque, scale);

创建图像上下文