Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
から画像を取得しましたUIImagePickerControllerが、ファイルが大きすぎてインターネット経由で転送できません。画像のサイズを変更したいと思います。画像処理に関するメソッドが見つかりませんでした。
UIImagePickerController
推奨事項はありますか?
を使用して目的のサイズのコンテキストを作成し、UIGraphicsBeginImageContext()UIImageの-drawInRect:メソッドを使用して画像をコンテキストに描画し、最後にを使用UIGraphicsGetImageFromCurrentImageContext()して新しいUIImageをプルアウトできます。
UIGraphicsBeginImageContext()
-drawInRect:
UIGraphicsGetImageFromCurrentImageContext()