是否可以为CameraViewController
中拍摄的图像设置最大尺寸并在PhotoEditViewController
中编辑?
作为示例,我想将图片限制为maxWidth
1600
和maxHeight
1600
,以便用户拍摄3024×4032
张照片我希望PESDK能够提供1200x1600
图片。感谢。
答案 0 :(得分:0)
目前不支持固定分辨率,但正在进行处理。但是,您可以先将PhotoEditViewControllerOptions.forceCropMode
设置为true
(described here),将TransformToolControllerOptions.allowFreeCrop
设置为false
(described here),然后设置固定的宽高比。然后将TransformToolControllerOptions.allowedCropAspects
(described here)设置为图片必须具有的裁剪宽高比(例如1:1)。