Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I know you can get a CGImage from a file using UIImage...

UIImage *img = [UIImage imageNamed:@"name.bmp"];
[img CGImage];

But, is there a way to get a CGImageRef without using a UIImage?

(I am trying this in a static library which doesn't have access to UIKit) I could use other frameworks if necessary, just not UIKit. Would CIImage work? Or NSBitmapImageRep?

share|improve this question
ImageIO.framework will be available, but otherwise you can't read a BMP simply by pure CG functions. – KennyTM May 7 '10 at 18:54
Out of curiosity, what is the harm in loading the image from UIImage? Is there a significant memory difference? – MrHen May 7 '10 at 20:42
I am doing this in a unit test. Our static lib that we are writing takes in a CGImageRef. I want to test it by passing one in from a test file I have. I tried loading UIKit in my unit test project, and doing the UIImage way, but it never worked. I assume it is because my unit test project is not a view application – Ovi Tisler May 7 '10 at 21:13

1 Answer

up vote 11 down vote accepted

You can get it from NSData:

CGDataProviderRef imgDataProvider = CGDataProviderCreateWithCFData((CFDataRef)[NSData dataWithContentsOfFile:@""]);
CGImageRef image = CGImageCreateWithPNGDataProvider(imgDataProvider, NULL, true, kCGRenderingIntentDefault); // Or JPEGDataProvider

You would have to be certain that the data was a JPEG or a PNG for this to work.

share|improve this answer
sweet! Thanks! Do you know if there's a way to do this for a BMP? There's no CGImageCreateWithBMPDataProvider... – Ovi Tisler May 14 '10 at 14:42
No, sorry, I think you'll have to go through the UIImage route for that :( – Tom Irving May 14 '10 at 15:21

protected by H2CO3 Sep 10 '12 at 20:30

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.