我正在使用 IOS 标准图像裁剪功能(移动和缩放)来裁剪我的图像,然后再将其提交到服务器。
但是,我意识到提供的裁剪有一个平方比(见下面的截图)
代码片段如下:
//set up image picker
self.imgPicker = [[[UIImagePickerController alloc] init]autorelease];
self.imgPicker.allowsEditing = YES;
self.imgPicker.delegate = self;
//Trigger get photo from library function
self.imgPicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:self.imgPicker animated:YES];
如何允许“移动和缩放”编辑,同时允许用户在没有平方比例限制的情况下进行裁剪?