Any available API for Lossless Compression for UIImage

I need to convert UIImages to NSData and convert back to still get the images lossless. Is there any available API that can do that?


Does UIImagePNGRepresentation() preserves losslessness of the images? UIImagePNGRepresentation() size is still big. I'm thinking to use gzip the NSData from UIImagePNGRepresentation() before sending over the API. When I get back to NSData of the image from the API, gunzip it and convert it back to UIImage, would the image still be lossless?


Thanks,

Any available API for Lossless Compression for UIImage
 
 
Q