Re: [Image-SIG] Opening TIFF and HPGL files using Python PIL getting IO Errors

2010-08-22 Thread Dean Allen Provins, P. Geoph.
Satya: On Wed, Aug 18, 2010 at 12:28:27AM +0200, Sebastian Haase wrote: > Satya, > maybe you can ask here: > http://pypi.python.org/pypi/Chiplotle > and let us all know what you got ... ;-) > > Good luck, > Sebastian Haase I recommend "hp2xx" to read, display and convert to other formats, your H

Re: [Image-SIG] Opening TIFF and HPGL files using Python PIL getting IO Errors

2010-08-19 Thread Stani
For group4 compressed tiff files you can preprocess them first with tiffcp to uncompressed tiff files which PIL can open. Tiffcp exists for all platforms (sudo apt-get install libtiff-tools on Ubuntu). On Mon, Aug 16, 2010 at 3:51 PM, Satya Gundapaneni wrote: > Hi, > > > > I am new to Python. >

Re: [Image-SIG] Opening TIFF and HPGL files using Python PIL getting IO Errors

2010-08-17 Thread Sebastian Haase
Satya, maybe you can ask here: http://pypi.python.org/pypi/Chiplotle and let us all know what you got ... ;-) Good luck, Sebastian Haase On Tue, Aug 17, 2010 at 11:55 PM, Edward Cannon wrote: > HPGL is a vector format used for old HP printers, PIL doesn't open > vector art, so no help there, y

Re: [Image-SIG] Opening TIFF and HPGL files using Python PIL getting IO Errors

2010-08-17 Thread Edward Cannon
HPGL is a vector format used for old HP printers, PIL doesn't open vector art, so no help there, you need a separate converter to turn it into a raster format. look at http://www.pythonware.com/library/pil/handbook/format-tiff.htm for more information about loading tiff files in PIL. On Mon, Aug 1