Created
September 19, 2011 23:08
-
-
Save dennda/1227860 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
CGDataProviderRef provider = CGDataProviderCreateWithCFData((__bridge CFDataRef) data); | |
CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceGray(); | |
CGImageRef img = CGImageCreate(width, height, bits_allocated, bits_allocated, | |
width,// * (bits_allocated / 8), | |
colorspace, | |
kCGBitmapByteOrderDefault, | |
provider, NULL, YES, | |
kCGRenderingIntentDefault | |
); | |
image = [UIImage imageWithCGImage:img]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment