我有一个 UIImagePickerViewController 并且我正在使用UIImagePickerControllerOriginalImage将我的图像保存到我的应用程序中:
[self.fileManager createFileAtPath:aPath contents:UIImageJPEGRepresentation(image, 1.f) attributes:nil];
结果 :
- 来自 Photo.app -> 2.2 Mo 的原始图像
- 来自我的应用程序的新保存图像-> JPEG 表示的 5.3 Mo 和 PNG 表示的 10.8 Mo!
所以我的问题很简单:为什么?以及如何达到 Photo.app 大小?
谢谢你的帮助 :)