David Martin
David Martin

Reputation: 1045

Loading TIFF's in Android

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

Answers (3)

Beyka
Beyka

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

Ankit Jain
Ankit Jain

Reputation: 2270

There is Google project going on this. please check this: Tiffonandroid

you can find all the related information here.

Upvotes: 3

Delimitry
Delimitry

Reputation: 3037

Java Advanced Imaging (JAI) is the best solution. It has a decoder and encoder for TIFF files.

Upvotes: 0

Related Questions