Skip to content

Instantly share code, notes, and snippets.

@dennda
Created September 19, 2011 23:08
Show Gist options
  • Save dennda/1227860 to your computer and use it in GitHub Desktop.
Save dennda/1227860 to your computer and use it in GitHub Desktop.
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