我遇到了如下所述的确切问题:
我需要裁剪旋转的UIImage,但是,当我尝试解决方案时,它不会裁剪图像
UIView *rotatedViewBox = [[UIView alloc] initWithFrame:videoPreviewView.frame];
NSLog(@"frame width: %f height:%f x:%f y:%f",videoPreviewView.frame.size.width, videoPreviewView.frame.size.height,videoPreviewView.frame.origin.x,videoPreviewView.frame.origin.y);
rotatedViewBox.transform = CGAffineTransformMakeRotation(90 * M_PI / 180);
CGSize rotatedSize = rotatedViewBox.frame.size;
UIGraphicsBeginImageContext(rotatedSize);
CGContextRef bitmap = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(bitmap, rotatedSize.width / 2.0f, rotatedSize.height / 2.0f);
CGContextRotateCTM(bitmap, 90 * M_PI / 180);
CGContextScaleCTM(bitmap, 1.0f, -1.0f);
CGContextDrawImage(bitmap, CGRectMake(-videoPreviewView.frame.size.width / 2.0f,
-videoPreviewView.frame.size.height / 2.0f,
videoPreviewView.frame.size.width,
videoPreviewView.frame.size.height),
image.CGImage);
UIImage *resultImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
日志是: 框架宽度:310高度:310 x:0 y:69
虽然旋转有效,但新图像不会在旧图像的0,69,310,310上被裁剪。
答案 0 :(得分:0)
你正在使用一个“解决方案”,虽然已被接受,但也带有OP评论“但它没有用。”
该解决方案仅声称处理问题的轮换部分,而不是作物。它正在做它声称做的事情,但不再做了。
这是执行裁剪的CG功能:
CGImageRef CGImageCreateWithImageInRect (
CGImageRef image,
CGRect rect
);
输入您想要裁剪的区域的图像和矩形。
请参阅此处的答案以获取示例用途:
Cropping an UIImage