问题:缩放后我可以在固定坐标(50,50,200,200)处裁剪图像吗?我在谷歌上搜索了很多小时,看到了匹配的问题。但没有得到答案。
谢谢。
我的裁剪逻辑在这里..
CGSize itemSize = CGSizeMake(200, 200);
UIGraphicsBeginImageContextWithOptions(itemSize, NO, 0);
CGRect imageRect = CGRectMake(50, 50, 200, 200);
[imageView1.image drawInRect:imageRect];
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
但我无法在滚动视图中裁剪确切的图像。我想要缩放后在滚动视图中显示的裁剪图像。