我有一个显示图像的应用程序,用户可以“剪切”图像的某些部分。
我的问题是我无法保存切割的部分。
参考:
这是裁剪图像的方法:
- (void) setClippingPath:(UIBezierPath *)clippingPath imagen:(UIImageView *)imagenView;
{
if (![[imagenView layer] mask])
[[imagenView layer] setMask:[CAShapeLayer layer]];
[(CAShapeLayer*) [[imagenView layer] mask] setPath:[clippingPath CGPath]];
}
我可以保存新图像吗?
谢谢