使用 UIImagePickerController 时如何更改裁剪矩形的大小
使用 UIImagePickerController 时我需要更改裁剪矩形的大小。就我而言,我需要用户选择 320x385 的图像,但裁剪矩形当前仅允许 320x320(当允许编辑打开时)。
有什么想法吗?
I need to change the size of the cropping rect when using UIImagePickerController
. In my case, I need the user to select images that are 320x385 but the crop rect currently only allows 320x320 (when allow editing is on).
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我做过类似的项目。您必须使用图像控制器。在图像控制器上方,您必须添加另一个图像控制器(只是因为这是您的裁剪区域)
上面ImageController 的未填充/空白部分是您将要使用的位置。 (所以你应该有一个尺寸为 320x480 且 320x385 为空的图像。)
I have done a similar project. You have to use an image controller. Above your image controller you have to add another image controller (just because this is your crop area)
aboveImageController's unfilled/empty part is where you will take. (so you should have an image with 320x480 sized and 320x385 empty in it.)
委托方法中的字典返回所有内容:
我假设,您一直在使用几乎没用的 EditedImage ...也许对于某些缩略图...无论如何,信息字典包含 CropRect 数据,这是您唯一需要做的事情是重新计算尺寸并自行裁剪 OriginalImage,例如使用:
UIImage:调整大小,然后裁剪
我没有测试过,这只是理论:) ...但从理论上讲,这应该有效:D
The dictionary in the delegate method returns all that:
I assume, you've been using the EditedImage which is pretty much useless ... maybe for some thumbnails ... anyway, the info dictionary contains CropRect data, only thing you have to do is to recalculate the sizes and crop the OriginalImage yourself, using for example this:
UIImage: Resize, then Crop
I haven't tested, this is just theory :) ... but in theory, this should work :D
从图像选择器获取图像并提供裁剪功能作为不同的模块后。因此用户可以选择他们想要裁剪的图像部分。
After getting image from image picker and give crop functionality as different module. So user can select the part of image which one they want to crop.
你可以用这个
You can use this