Converting CIImage Into NSImage

11,177

Solution 1

I haven't tested it, but I think this should do it:

CIImage *ciImage = ...;

NSCIImageRep *rep = [NSCIImageRep imageRepWithCIImage:ciImage];
NSImage *nsImage = [[NSImage alloc] initWithSize:rep.size];
[nsImage addRepresentation:rep];

In Swift:

let ciImage = ...
let rep = NSCIImageRep(ciImage: ciImage)
let nsImage = NSImage(size: rep.size)
nsImage.addRepresentation(rep)

Solution 2

In Swift:

var rep: NSCIImageRep = NSCIImageRep(ciImage: gaussianBlurFilter.outputImage)
var nsImage: NSImage = NSImage(size: rep.size)
nsImage.addRepresentation(rep)
Share:
11,177
El Tomato
Author by

El Tomato

Updated on June 08, 2022

Comments

  • El Tomato
    El Tomato almost 2 years

    I'm playing with the Core Image framework. As I understand, if I have an image (NSImage), it needs to be converted into CIImage, first. I can do that.

    NSImage *im1 = [[NSImage alloc] initWithContentsOfFile:imagepath];
    NSRect rect1;rect1.size.width = img1.size.width; rect1.size.height = img1.size.height;
    CGImageRef imageRef1 = [img1 CGImageForProposedRect:&rect1 context:[NSGraphicsContext currentContext] hints:nil];
    CIImage *ciimage = [CIImage imageWithCGImage:imageRef1];
    

    I have a function that applies a Core Image filter to a core image (CIImage), which I want to test. And I want to add output image to a window as a subview. So I need NSImage. How can I convert this core image back into NSImage? If I ask Google, I don't get good results.

    Thank you for your help.

  • Freek Sanders
    Freek Sanders over 5 years
    First line should probably be: var rep: NSCIImageRep = NSCIImageRep(ciImage: ciimage)