Skip to content

Instantly share code, notes, and snippets.

@PavelGnatyuk
Created March 22, 2014 19:04
Show Gist options
  • Save PavelGnatyuk/9712538 to your computer and use it in GitHub Desktop.
Save PavelGnatyuk/9712538 to your computer and use it in GitHub Desktop.
+ (void)decompressImage:(UIImage *)image
{
if ( image ) {
UIGraphicsBeginImageContext(CGSizeMake(1, 1));
[image drawAtPoint:CGPointZero];
UIGraphicsEndImageContext();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment