On Fri, Aug 27, 2010 at 11:25 AM, Albert-Jan Roskam <fo...@yahoo.com> wrote:

> Hi again,
>
> Some more questions about tiff conversion.
>
> First, thanks for your previous replies. I cannot use IrfanView any time
> soon, nor will my boss switch to Linux.
>

Have you tried using the PIL?
http://www.pythonware.com/products/pil/

import Image
i = Image.open("file.tiff")
i.save(open('file.png', 'w'), filetype='png')

I don't know if that was previously suggested, but it should work on any
platform with PIL installed.

HTH,
Wayne
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to