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,018
  • 2
  • 15
  • 32
bytefire
  • 3,932
  • 2
  • 25
  • 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
  • 79,175
  • 14
  • 122
  • 139