Skip to content

Instantly share code, notes, and snippets.

@tonymillion
Created August 31, 2012 15:23
Show Gist options
  • Save tonymillion/3554528 to your computer and use it in GitHub Desktop.
Save tonymillion/3554528 to your computer and use it in GitHub Desktop.
CGImageRef imgRef = [self.liveImageContext createCGImage:ciimg
fromRect:ciimg.extent];
UIImage *newimg = [UIImage imageWithCGImage:imgRef];
CGImageRelease(imgRef);
dispatch_async(dispatch_get_main_queue(), ^{
self.liveImageView.image = newimg;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment