Skip to content

Instantly share code, notes, and snippets.

@Santarh
Created February 14, 2012 12:10
Show Gist options
  • Save Santarh/1826390 to your computer and use it in GitHub Desktop.
Save Santarh/1826390 to your computer and use it in GitHub Desktop.
Getting BitmapData from Image on Cocoa
- (CGImageRef) loadImageWithPath:(NSString*)path
{
NSImage* image = [NSImage imageNamed:path];
return [image CGImageForProposedRect:nil context:nil hints:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment