-
-
Save Akhrameev/9f56c70fc92b8787ff6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment