Is there a way to get NSData
in TIFF representation from UIImage
instance, just the way you can get PNG and JPEG representations using UIImage.AsPNG()
and UIImage.AsJPEG()
methods respectively?
Thanks
Is there a way to get NSData
in TIFF representation from UIImage
instance, just the way you can get PNG and JPEG representations using UIImage.AsPNG()
and UIImage.AsJPEG()
methods respectively?
Thanks
iOS doesn't have a native TIFF library. You could try
See this question for info about a Obj-C port of ImageMagick.