【发布时间】:2012-04-22 05:01:23
【问题描述】:
我有一个照片应用程序,您可以在其中在一个部分中添加贴纸。完成后,我想保存图像。这是我必须这样做的代码。
if(UIGraphicsBeginImageContextWithOptions != NULL)
{
UIGraphicsBeginImageContextWithOptions(self.view.frame.size, YES, 2.5);
} else {
UIGraphicsBeginImageContext(self.view.frame.size);
}
CGContextRef contextNew=UIGraphicsGetCurrentContext();
[self.view.layer renderInContext:contextNew];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
现在保存的图像是图像的全屏,这很好,但现在我需要裁剪图像,我不知道如何。您可以在下面的链接中看到图片: http://dl.dropbox.com/u/19130454/Photo%202012-04-09%201%2036%2018%20PM.png
我需要裁剪: 左右91px 距离底部 220 像素
任何帮助将不胜感激。如果我没有解释清楚,请告诉我,我会尽力重新解释。
【问题讨论】: