I need to save the contents of a pixel editor application into a .png file but I am having trouble finding the best way to accomplish this. The pixel data is stored in a 32 bit RGBA buffer. Can anyone suggest any good tools I could use to accomplish this?
EDIT: Unfortunately, CGImage and representationUsingType: are not supported by cocotron and I need to be able to target my app for PC release as well, can anyone suggest a third way of accomplishing this task?
NSBitmapImageRep
should get you what you need. Load the data up into theNSBitmapImageRep
and then userepresentationUsingType:properties:
to get it out as a PNG. A quick example:If you can't use these Cocoa methods, check out
libpng
.