使用BJImageCropper在ios中进行图像裁剪

时间:2012-08-14 11:26:15

标签: iphone ios objective-c ios5 crop

我在iOS中使用BJImageCropper进行图像裁剪,但是当我触摸图像的最后一个角时,它会自动更新另一侧的高度和宽度。

示例代码为https://github.com/barrettj/BJImageCropper/zipball/master

3 个答案:

答案 0 :(得分:2)

获取我刚刚推送的提交。应该在那里修理。

答案 1 :(得分:0)

这是代码中的错误。联系作者纠正错误:)

答案 2 :(得分:0)

您可以使用其他选项裁剪作为ContextRect的图像

简短的例子是:

CGRect contextRect = CGRectMake(50, 50, 200, 200);

UIGraphicsBeginImageContext(contextRect.size);

[self.view.layer renderInContext : UIGraphicsGetCurrentContext()];

UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

CGImageRef imageRef = CGImageCreateWithImageInRect([viewImage CGImage], contextRect);

UIImage * savedImage = [UIImage imageWithCGImage:imageRef scale:1.0 orientation:viewImage.imageOrientation];

您可以根据图像编辑视图的x,y原点和宽度n高度。