I am trying to create TIFF image from a UIImage. I looked into Apple's docs but could not find any information on this question.
Can anyone help me and explain how to create a TIFF image on an iPad?
Any help will be appreciated
Thanks
|
It seems to me that ImageMagick is way overkill just to write tiffs. Why not build libtiff? iOS is supported from it, and is what most software packages use to write tiffs (including ImageMagick). You can even use the libtiff.a file from the ImageMagick link above. Just install the lib and tiff headers into your project. EDIT: Here is a nice tutorial showing you how to write a tiff once you have installed libtiff. The second part of the tutorial shows you how to control the compression. |
|||||||||||
|
|
ImageMagick has been compiled for iOS and allows for handling of TIFF images. The instructions can be found here: http://www.imagemagick.org/script/binary-releases.php?ImageMagick=34s6srn5bll7310o0qo6db5hb3#iOS There is also a Sample Project that illustrates how to integrate this functionality into your application. It should be noted that including this library takes several steps - and the instructions are included in the link above. SETTING UP A PROJECT FOR IMAGEMAGICKFirst, download the latest version (from the first link above) with libs in the name. This includes pre-compiled versions of the needed frameworks. Unzip the contents of this file. Next, right-click Frameworks in your iOS projects and select the option to Add Files. Add each of the files with the .a extension. You should have something resembling this:
Next, you'll need to add the proper header search paths. Go to the Build Settings for your project and search for Header Search Paths. Select this and add a new search path that corresponds to where the include directory is (from the download). Don't add this just for debug or release, but for all. You should now have something that looks like this:
Now you should be able to include and use code from the ImageMagick framework. |
|||||||||
|
-[NSImage TIFFRepresentation]in iOS… – David Dunham Jan 18 '12 at 19:24