Detect whether an UIImage is PNG or JPEG?

Uwe Keim picture Uwe Keim · Aug 27, 2011 · Viewed 16.6k times · Source

Currently doing my first steps with iPhone development through MonoTouch, I am playing with an UIImage that I read from the photo library.

What I want to achieve is to get the raw byte array (byte[]) of the image.

I know that there are the UIImageJPEGRepresentation and UIImagePNGRepresentation wrappers in MonoTouch. I also know how to use them. What I don't know is:

How do I decide which of these two functions to call?

I.e. if the original image is a JPEG image, I do not want to get it as an PNG but also as a JPEG, and vice versa.

Is there a way to do this, or am I missing some points on this?

Answer

bryanmac picture bryanmac · Aug 27, 2011

Once you have a UIImage, it is capable of producing either a JPEG or PNG using UIImageJPEGRepresentation or UIImagePNGRepresentation. The format of the original image is only important when the UIImage is being created from it (decides which CFImage provider to load it).

If it's important to your app or algorithm to ensure you save it as the original format, I think you have to maintain that info to use when your writing it. I double checked and couldn't find anything that advertised what format it came from.

Are you going to change the image through UIImageView or does the image stay unchanged in your experience? If it's not changed and you just need the UI to select the image, could you get to file bytes? For example, if you showed the images just to select and then you upload them to a server or something, the UIImage could only be for viewing and selecting and if your data structure remembers which file it came from, you could get the bits back off disk and upload. If your changing the file in the view, then you or the user needs to decide the output (and if jpeg the quality) of the image.