views:

1019

answers:

2

hello

I am developing an app in which i need the image in TIFF format.But in android u can convert your bitmap/image to only JPEG/png image.

is there a way to convert JPEG/png file to TIFF format or is there any jar availble to do so..

plz help...

thanx in adv...

A: 

I'm not sure that Android SDK supports Java Image I/O, but check out following question: http://stackoverflow.com/questions/967557/java-api-to-convert-jpeg-to-tiff

Harri Siirak
A: 

Android does not support TIFF files. You can get the Bitmap's raw pixel data array and convert it to TIFF manually using any of the links from the previous comment.

Reflog