Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
iOS doesn't have a TIFF image library, as far as I know. You likely need to upload your image to the server, and let the server convert it to TIFF. – Matt H Jan 3 '12 at 15:49
Sadly no -[NSImage TIFFRepresentation] in iOS… – David Dunham Jan 18 '12 at 19:24
The errors mean that you have to add the libz library to your "Build Phases". Click on your project (upper right hand corner of XCode), click on your target, click "Build Phases", click "Link Binary with Libraries", click +, then choose libz.dylib. – Jeshua Lacock Feb 9 '12 at 0:01
Thanks That worked. I need some help in converting data types can you please look into the modified question. – din Feb 9 '12 at 15:49
No - that is not the way to do it. You will have JPEG bytes, not raw image bytes. I would suggest accepting my answer and asking a new question. You are really asking a new question, and I will answer it there. – Jeshua Lacock Feb 9 '12 at 18:58

2 Answers

up vote 10 down vote accepted
+25

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.

share|improve this answer
Absolutely correct. – MK. Jan 24 '12 at 2:33
I tried couple of times. This is a c library and does not work when I include it to my ios project. I tried couple of ways but that does not work. – din Feb 8 '12 at 15:52
There is no reason why C/C++ libraries can't be used in an iOS app. I use them all the time. What exactly have you tried, and why exactly does it not work? Please amend your question above. – Jeshua Lacock Feb 8 '12 at 16:34
You need to install the static library and header. You can download the libtiff static library from the image magick binary posted below. – Jeshua Lacock Feb 8 '12 at 19:29
I tried that. I added the libtiff.a lib file from imagemagick and added the tiff folder which has 4 header files. Should I specify the header search path also? – din Feb 8 '12 at 19:59
show 5 more comments

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 IMAGEMAGICK

First, 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:

Frameworks Group with Needed ImageMagick Frameworks

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:

Header Search Paths for ImageMagick

Now you should be able to include and use code from the ImageMagick framework.

share|improve this answer
I looked at ImageMagic. Can you let me tell to run the script. I could nt get it. – din Jan 17 '12 at 22:12
I've updated my answer with instructions on how to use the framework. – dtuckernet Jan 17 '12 at 23:19
Have you been able to get this to work in your project? Just curious. – dtuckernet Jan 19 '12 at 20:05
Yes. I was able to add this to my project but I could to get to convert to tiff image. Could you let me know about that please. I mean like apple library. – din Jan 20 '12 at 20:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.