我需要从 NSImage 获取 CGIImageRef。有没有一种简单的方法可以在 Mac OS X 的 Cocoa 中做到这一点?

最佳答案

如果您需要针对 Mac OS X 10.5 或任何其他先前版本,请改用以下代码段。如果你不这样做,那么 NSD 的答案是正确的方法。

CGImageRef CGImageCreateWithNSImage(NSImage *image) {
    NSSize imageSize = [image size];

    CGContextRef bitmapContext = CGBitmapContextCreate(NULL, imageSize.width, imageSize.height, 8, 0, [[NSColorSpace genericRGBColorSpace] CGColorSpace], kCGBitmapByteOrder32Host|kCGImageAlphaPremultipliedFirst);

    [NSGraphicsContext saveGraphicsState];
    [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:bitmapContext flipped:NO]];
    [image drawInRect:NSMakeRect(0, 0, imageSize.width, imageSize.height) fromRect:NSZeroRect operation:NSCompositeCopy fraction:1.0];
    [NSGraphicsContext restoreGraphicsState];

    CGImageRef cgImage = CGBitmapContextCreateImage(bitmapContext);
    CGContextRelease(bitmapContext);
    return cgImage;
}

如果您的图像来自文件,则最好使用 image source 将数据直接加载到 CGImageRef 中。

10-08 07:24