我通过传递两个参数使用以下方法创建图像,一个是UIImage
对象是 imagdata,NSString
对象是 storeImage
JPG:[UIImageJPEGRepresentation(imageData, 1.0) writeToFile:storeImage atomically:YES];
或 PNG: [UIImagePNGRepresentation(imageData) writeToFile:storeImage atomically:YES];
我的问题是,在我使用上述方法后,原始图像大小为 2.1 MB,模拟器中的图像大小为 4.2 MB。
我不想使用任何压缩方法,也不想损失任何图像质量。我想复制给定路径中的图像。在实际大小。