2

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

Nayan
  • 3,014
  • 2
  • 17
  • 33
bytefire
  • 4,156
  • 2
  • 27
  • 36

1 Answers1

2

iOS doesn't have a native TIFF library. You could try

  • using a third party service
  • find an open source C# library and port it
  • find a obj-c library and bind it

See this question for info about a Obj-C port of ImageMagick.

Community
  • 1
  • 1
Jason
  • 86,222
  • 15
  • 131
  • 146