1

我在 CMYK 颜色空间中有一个 CGImage(即,当通过 CGImageGetColorSpace 查询时,CGColorSpaceGetModel 返回 kCGColorSpaceModelCMYK)。

但是,当我尝试通过 CGImageDestination 保存它时,它会转换为 RGBColorSpace。我试图设置正确的字典值,但无济于事。我怎么知道这个?当我使用预览打开保存的图像时,常规信息选项卡告诉我“ColorModel:RGB”和“配置文件名称:通用 RGB 配置文件”。如果我用 CGImageSource 打开保存的文件并读出属性,我会得到相同的结果(RGB 颜色模型,通用 RGB 配置文件)。

现在,在我失去最后一根头发(单数)之前,我的问题是:这是故意的吗?ImageIO 不能以 RGB 以外的任何格式保存图像吗?只是为了好玩,我用 L*a*b 颜色空间尝试了同样的方法,并得到了相同的结果。

这是我的保存代码:

BOOL saveImage(CGImageRef theImage, NSURL *fileDestination, NSString *theUTI) 
{

CGImageDestinationRef imageDestination = CGImageDestinationCreateWithURL((__bridge CFURLRef)fileDestination, (__bridge CFStringRef) theUTI, 1, nil);

// now assemble the dictionary for saving
NSMutableDictionary *theDict = nil;
theDict = [[NSMutableDictionary alloc] initWithCapacity:10];
[theDict setObject:[NSNumber numberWithFloat:hdpi] forKey: (id) kCGImagePropertyDPIHeight];
[theDict setObject:[NSNumber numberWithFloat:vdpi] forKey: (id) kCGImagePropertyDPIWidth];
}

// now make sure that we have the correct color space in the dictionary
NSString *colorModel = nil;
CGColorSpaceRef theColorSpace = CGImageGetColorSpace(theImage);
CGColorSpaceModel theModel = CGColorSpaceGetModel(theColorSpace);
switch (theModel) {
    case kCGColorSpaceModelRGB:
        colorModel = kCGImagePropertyColorModelRGB;
        break;

    case kCGColorSpaceModelLab:
        colorModel = kCGImagePropertyColorModelLab;
        break;

    case kCGColorSpaceModelCMYK:
        colorModel = kCGImagePropertyColorModelCMYK;
        break;

    default:
        colorModel = kCGImagePropertyColorModelRGB;
        break;
}
[theDict setObject:colorModel forKey:(id) kCGImagePropertyColorModel];

// Add the image to the destination, characterizing the image with
// the properties dictionary.
CGImageDestinationAddImage(imageDestination, theImage, (__bridge CFDictionaryRef) theDict); //properties);

BOOL success  = (CGImageDestinationFinalize(imageDestination) != 0);
CFRelease(imageDestination);
return success;
}

一定有一些明显的东西我忽略了。我是否必须设置一些 kCFSuperSecretProperty 才能使其正常工作?还是 ImageIO 根本不保存为 CMYK?

哦,如果这是一个因素,我在 OSX 10.7 (Lion) 上,

4

1 回答 1

4

好的,我咬紧牙关,利用事件获得了 Apple 的工程部门的帮助。这是他们的回复:

答案分为两部分:

1) 如果目标文件格式支持该颜色空间,ImageIO 将保留 CMYK 和 Lab 颜色空间。目前,支持 CMYK 的图像格式有 TIFF、PSD、JPEG 和 JPEG 2000。如果目标文件格式不支持当前色彩空间,ImageIO 将转换为标准 RGB 配置文件。例如,如果您打算将 CMYK 图像保存为 PNG 或 BMP 文件格式,则会发生这种情况

2) ImageIO 不支持将 CMYK 或 Lab 保存为 JPEG 2000,即使规范声明文件格式支持 CMYK 和 Lab。Apple Engineering 承认目前这是 ImageIO 的一个缺点。这在未来可能会改变。

所以,上面的代码正确的。您必须自己过滤文件目标类型 (UTI) 或警告用户即将进行转换。将来,当 Apple 将 CMYK 和 Lab 支持添加到 JPEG 2000 时,您将不得不更改过滤器功能,但代码可以保持不变。

于 2014-07-29T08:13:01.603 回答