Skip to content

Instantly share code, notes, and snippets.

@takuma104
Created December 18, 2009 08:07
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save takuma104/259357 to your computer and use it in GitHub Desktop.
Save takuma104/259357 to your computer and use it in GitHub Desktop.
@interface UIImage(ImmediateLoad)
+ (UIImage*)imageImmediateLoadWithContentsOfFile:(NSString*)path;
@end
@implementation UIImage(ImmediateLoad)
+ (UIImage*)imageImmediateLoadWithContentsOfFile:(NSString*)path {
UIImage *image = [[UIImage alloc] initWithContentsOfFile:path];
CGImageRef imageRef = [image CGImage];
CGRect rect = CGRectMake(0.f, 0.f, CGImageGetWidth(imageRef), CGImageGetHeight(imageRef));
CGContextRef bitmapContext = CGBitmapContextCreate(NULL,
rect.size.width,
rect.size.height,
CGImageGetBitsPerComponent(imageRef),
CGImageGetBytesPerRow(imageRef),
CGImageGetColorSpace(imageRef),
CGImageGetBitmapInfo(imageRef)
);
CGContextDrawImage(bitmapContext, rect, imageRef);
CGImageRef decompressedImageRef = CGBitmapContextCreateImage(bitmapContext);
UIImage *decompressedImage = [UIImage imageWithCGImage:decompressedImageRef];
CGImageRelease(decompressedImageRef);
CGContextRelease(bitmapContext);
[image release];
return decompressedImage;
}
@end
@steipete
Copy link

Careful, this doesn't set the best byte ordering. If this is for the screen, you should use CGBitmapContextCreate(imageBuffer, width, height, 8, width*4, colourSpace,
kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Little); instead.

@bagelturf
Copy link

The comment by steipete above is incorrect. The code as written handles this because it is set by the UIImage. If you try the suggested optimization your code will break as soon as you try to render images with monochrome color spaces.

@steipete
Copy link

True that, it's a delicate change - but then again, one also can manually set the bits per component and byts per row to not break things.

@bdudney
Copy link

bdudney commented Mar 29, 2012

Hi Steve, I'm pretty sure that the imageRef will also have an internal pointer to the decompressed bits. You could just create a new context with the UIKit functions, draw image then discard the context. The UIImage image would then have an indirect pointer to the decompressed image.

@dannybabiy
Copy link

The snippet works on my iphone, but then in the simulator it doesn't work. I get something like : CGBitmapContextCreate: unsupported parameter combination: 8 integer bits/component; 24 bits/pixel; 3-component color space; kCGImageAlphaNone; 1440 bytes/row.

I noticed that for the same troubled image, on the device CGImageGetBytesPerRow(imageRef) == 1920 and width*4 == 1920, but in the simulator CGImageGetBytesPerRow(imageRef) == 1440.

I then tried what steipete suggested and it works on both the device and simulator. Thoughts?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment