我知道文档说 CGBitMapContextCreate 不支持索引颜色空间。这对我来说很麻烦。我有一堆需要显示的 256 位 PNG 文件,它们都是索引颜色空间:
<CGColorSpace 0x101301000> (kCGColorSpaceICCBased; kCGColorSpaceModelRGB; sRGB IEC61966-2.1)
如何将 CGImageRef 转换为支持的色彩空间,以便我可以完成这项工作?
这是我的方法,但有问题:
- (BOOL) renderToBuffer:(void*)baseAddress withBytesPerRow:(NSUInteger)rowBytes pixelFormat:(NSString*)format forBounds:(NSRect)bounds
{
CGContextRef context = CGBitmapContextCreate(baseAddress, bounds.size.width, bounds.size.height,
8, rowBytes, CGImageGetColorSpace(img),
kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
CGImageRef imageRef = CGImageCreateWithImageInRect(img, bounds);
CGContextDrawImage(context, CGRectMake(0, 0, bounds.size.width, bounds.size.height), imageRef);
CGImageRelease(imageRef);
CGContextRelease(context);
return YES;
}