2

我有一个非常奇怪的问题......在我的 iPhone 应用程序中,用户可以打开相机胶卷中的图像,在我的示例中是 1920 x 1080 像素(72 dpi)的壁纸。

现在,想要将图像大小调整为例如 1024 像素的宽度:

+ (UIImage *)imageWithImage:(UIImage *)image scaledToSize:(CGSize)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 像素,72 dpi。

如何强制保存 72 dpi 的 UIImage?

4

1 回答 1

3

啊啊啊!!!

我得到了它...

UIGraphicsBeginImageContextWithOptions(newSize, NO, 1.0);

“1.0”而不是“0.0”!

第三个参数是应用于位图的比例因子。如果您指定值 0.0,则比例因子设置为设备主屏幕的比例因子。

于 2012-10-20T14:59:51.680 回答