我创建了一个应用程序,我可以在其中使用手势旋转、调整大小、翻译图像。然后我需要从UIImageView
. 我在Stack-overflow的某个地方找到了这部分代码。这里虽然回答了笑脸问题,但是需要输入角度。同一个人在其他地方写了我正在使用的更好的解决方案。但它有一个问题。通常它会返回一个空白图像。或截断的图像(通常从顶部)。因此代码有问题,需要进行一些更改。我的问题是,我是 Core-graphics 的新手,并且严重陷入了这个问题。
UIGraphicsBeginImageContext(imgView.image.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGAffineTransform transform = imgView.transform;
transform = CGAffineTransformScale(transform, 1.0, -1.0);
CGContextConcatCTM(context, transform);
CGContextDrawImage(context, CGRectMake(0, 0, imgView.image.size.width, imgView.image.size.height), imgView.image.CGImage);
UIImage *newRotatedImage = [UIImage imageWithCGImage: CGBitmapContextCreateImage(context)];
UIGraphicsEndImageContext();
编辑 1.1 感谢您的示例代码,但它又出现了问题。让我更详细地解释一下,我正在使用手势来缩放、翻译和调整图像大小。所以所有这些数据都保存在 imageview 的 transform 属性中。我喜欢 core-image 中的另一种方法。所以我将代码更改为:
CGRect bounds = CGRectMake(0, 0, imgTop.size.width, imgTop.size.height);
CIImage *ciImage = [[CIImage alloc] initWithCGImage:imageView.image.CGImage options:nil];
CGAffineTransform transform = imgView.transform;
ciImage = [ciImage imageByApplyingTransform:transform];
return [UIImage imageWithCIImage:ciImage] ;
现在我得到了挤压和错误尺寸的镜像。很抱歉再次打扰您。你能指导我如何在 coreimage 中使用 imageview 的变换来获得正确的图像吗?