I've got PIL 1.1.7, Python 2.6.6, Libtif, libjpg, etc. Mac OS X 10.6.5. I've 
got some Tiff files with JPG compression , if I do

import Image

im = Image.open('myfile.tif')
im.info['compression']
'jpeg'

im.show()

I get the proper image but the colors are not remotely correct.

If I first do from the command line
tiffcp -c lzw myfile.tif lwfile.tif

python
import Image
im = image.open('lwfile.tif')
im.info['compression']
'tiff_lzw'
im.show()

The image looks fine

Is there some keyword or option or some other set of steps to open a jpeg 
compressed tiff properly and work on it with PIL?

thanks


Gary Leydon
Systems Administrator
Dept of Neurobiology/Yale University School of Medicine
333 Cedar St.
New Haven, Ct. 06520-8001

gary.ley...@yale.edu
ph:203-785-5736
fax:203-785-5263

_______________________________________________
Image-SIG maillist  -  Image-SIG@python.org
http://mail.python.org/mailman/listinfo/image-sig

Reply via email to