サーバーに送信する前に、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];
「移動と拡大縮小」編集を許可し、同時にユーザーが正方形比の制限なしでトリミングできるようにするにはどうすればよいですか?