我使用下面的代码裁剪了我的图像。
- (UIImage *)crop:(CGRect)rect image:(UIImage *)image {
if (image.scale > 1.0f) {
rect = CGRectMake(rect.origin.x * image.scale,
rect.origin.y * image.scale,
rect.size.width * image.scale,
rect.size.height * image.scale);
}
CGImageRef imageRef = CGImageCreateWithImageInRect(image.CGImage, rect);
UIImage *result = [UIImage imageWithCGImage:imageRef scale:image.scale orientation:image.imageOrientation];
CGImageRelease(imageRef);
return result;
}
- (void)function
{
CGRect nf = CGRectMake(0, 0, 325, 303); //The area I need to crop
imageView.image = [self crop:nf image:imageView.image];
// Here I need to resize the new image
}
现在,我需要调整我裁剪的图片大小。我试过了:
我需要你的帮助。
编辑:我试图改变这样的框架:imageView.frame = CGRectMake(x,y,width,height);
答案 0 :(得分:0)
试试这个
[image drawInRect:CGRectMake(0, 0,width,height)];
发布一些你尝试过的代码
答案 1 :(得分:0)
我想我没有正确使用CGAffineTransformMakeScale,因为我最终写到
imageView.transform = CGAffineTransformMakeScale(0.x, 0.x);