我有一个非常奇怪的问题... 在我的 iPhone 应用程序中,用户可以打开相机胶卷中的图像,在我的示例中 壁纸为 1920 x 1080 像素 (72 dpi)。
现在,想要将图像调整为宽度,例如1024 像素:
+ (UIImage *)imageWithImageUIImage *)image scaledToSizeCGSize)newSize {
UIGraphicsBeginImageContextWithOptions(newSize, NO, 0.0);
[image drawInRect:CGRectMake(0, 0, newSize.width, newSize.height)];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
NSLog(@"New image has w=%f, h=%f", newImage.size.width, newImage.size.height);
return newImage;
}
通过日志信息,我可以检查,宽度为 1024,高度为 576。一切正常!
但现在,我将图像保存在 Documents 文件夹中:
NSString *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:[NSString stringWithFormat"Documents/%@.jpg", uniqueId]];
[UIImageJPEGRepresentation(originalImage, 1.0) writeToFile:jpgPath atomically:YES];
现在还有一个很奇怪的效果:
a) 当我使用 Retina Simulator 时,“/Users/[...]/Library/Application Support/iPhone Simulator/5.1/Applications/[...]/Documents/”中保存的图像大小为 1, 5 MB,分辨率为 2048 x 1152 像素,144(!) dpi。
b) 当我使用普通模拟器时,大小为 441 KB,分辨率为 1024 x 768 px,72 dpi。
如何强制保存 72 dpi 的 UIImage?
啊啊啊!!!
我明白了……
UIGraphicsBeginImageContextWithOptions(newSize, NO, 1.0);
“1.0”而不是“0.0”!
第三个参数是应用于位图的比例因子。如果您指定值 0.0,则比例因子设置为设备主屏幕的比例因子。
关于iphone - 以 72 dpi 保存 UIImage(Retina 模拟器以 144 dpi 保存),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12988903/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |