3

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

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

4

3 回答 3

2

获取我刚刚推送的提交。应该固定在那里。

于 2012-08-15T13:01:19.807 回答
0

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

于 2012-08-14T11:36:51.547 回答
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 高度。

于 2012-08-14T12:35:30.137 回答