Reputation: 1045
I am trying to load TIFF's in an Android application. However I cannot find a native Android loader for TIFF files. Does anyone have some pointers? I am reluctant to go down the JNI route as I feel sure there must be a simpler option!
Upvotes: 8
Views: 6225
Reputation: 1372
Here is my library that allow to choose some decode parameters for tiff (f.e. page for multipage tiff) https://github.com/Beyka/Android-TiffBitmapFactory
Upvotes: 2
Reputation: 2270
There is Google project going on this. please check this: Tiffonandroid
you can find all the related information here.
Upvotes: 3
Reputation: 3037
Java Advanced Imaging (JAI) is the best solution. It has a decoder and encoder for TIFF files.
Upvotes: 0