[Image-SIG] Python Image Library problems with Tiff file using JPEG compression

Leydon, Gary gary.leydon at yale.edu
Tue Nov 23 15:41:12 CET 2010


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.leydon at yale.edu
ph:203-785-5736
fax:203-785-5263

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/image-sig/attachments/20101123/238ab012/attachment-0001.html>


More information about the Image-SIG mailing list