Re: should i install python image library by myself?

2011-07-13 Thread MRAB
On 14/07/2011 01:18, think wrote: when i type import image in the python interactive command, i am surprised to find that it does not work. the details are as follows: >>> import image Traceback (most recent call last): File "", line 1, in ? ImportError: No module named image i wonder the image

Re: should i install python image library by myself?

2011-07-13 Thread Chris Rebert
On Wed, Jul 13, 2011 at 5:18 PM, think wrote: > when i type import image in the python interactive command, i am surprised > to find that it does not work. the details are as follows: What led you to expect that exact command would work in the first place??  import image > Traceback (most re

should i install python image library by myself?

2011-07-13 Thread think
when i type import image in the python interactive command, i am surprised to find that it does not work. the details are as follows: >>> import image Traceback (most recent call last): File "", line 1, in ? ImportError: No module named image i wonder the image library should be a buildin modu

Re: Python Image Library IOError - cannot find JPEG decoder?

2009-02-25 Thread Zvezdan Petkovic
On Feb 24, 9:34 am, Dario Traverso wrote: I've been trying to install the Python Image Library (PIL) on my Mac OSX Leopard laptop, but have been running into some difficulties. ... I've followed all of the installation instructions exactly. The build summary reported everything was

Re: Python Image Library IOError - cannot find JPEG decoder?

2009-02-25 Thread OdarR
On 24 fév, 18:34, Dario Traverso wrote: > I've been trying to install the Python Image Library  (PIL) on my Mac   > OSX Leopard laptop, but have been running into some difficulties. > > I've built the library, using the included setup.py  script. The build   > summary

Re: Python Image Library IOError - cannot find JPEG decoder?

2009-02-25 Thread Irmen de Jong
wongobongo wrote: On Feb 24, 9:34 am, Dario Traverso wrote: I've been trying to install the Python Image Library (PIL) on my Mac OSX Leopard laptop, but have been running into some difficulties. I've built the library, using the included setup.py script. The build summary che

Re: Python Image Library IOError - cannot find JPEG decoder?

2009-02-25 Thread wongobongo
On Feb 24, 9:34 am, Dario Traverso wrote: > I've been trying to install the Python Image Library  (PIL) on my Mac   > OSX Leopard laptop, but have been running into some difficulties. > > I've built the library, using the included setup.py  script. The build   > summary

Python Image Library IOError - cannot find JPEG decoder?

2009-02-24 Thread Dario Traverso
I've been trying to install the Python Image Library (PIL) on my Mac OSX Leopard laptop, but have been running into some difficulties. I've built the library, using the included setup.py script. The build summary checks out ok, and sounds the option libraries to all be found.

Re: Python image library issue: domain users cannot save files?

2008-11-20 Thread [EMAIL PROTECTED]
I have no problem with the python builtin open which we use dayly. Thanks for the hints. Best, V On Nov 19, 5:56 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Wed, 19 Nov 2008 13:43:07 -0200, [EMAIL PROTECTED]   > <[EMAIL PROTECTED]> escribió: > > > Has anyone try to use PIL in a window

Re: Python image library issue: domain users cannot save files?

2008-11-19 Thread Gabriel Genellina
En Wed, 19 Nov 2008 13:43:07 -0200, [EMAIL PROTECTED] <[EMAIL PROTECTED]> escribió: Has anyone try to use PIL in a windows domain environment? I am having a permission issue. If I am a domain user, even I have the permission to write a folder, when I tried to do simple things like Image.open (

Python image library issue: domain users cannot save files?

2008-11-19 Thread [EMAIL PROTECTED]
Hi, Has anyone try to use PIL in a windows domain environment? I am having a permission issue. If I am a domain user, even I have the permission to write a folder, when I tried to do simple things like Image.open ("foo.tif").save("bar.tif"), i am getting exception IOError ("0", "Error"). I tried to

Re: Python Image Library

2005-12-16 Thread S. D. Rose
Sorry-- meant to post to comp.python.image "S. D. Rose" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a question about PIL. > > I get a 50k photo from a MySQL table, convert it to grey-scale, do some > rotations, etc. Then I want to put it back. It seems that after I do th

Python Image Library

2005-12-16 Thread S. D. Rose
I have a question about PIL. I get a 50k photo from a MySQL table, convert it to grey-scale, do some rotations, etc. Then I want to put it back. It seems that after I do the greyscale, it converts from 'JPEG' to 'RAW'. Can anyone tell me how I convert the image back to 'JPEG' and then insert th

Re: python image library TIFF

2005-09-22 Thread pantagruel
Thanks! I hadn't known about FreeImage either so double thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: python image library TIFF

2005-09-22 Thread Michele Petrazzo
bryan rasmussen wrote: > Hi > does anyone have any experience using the Python Image library to > determine if a Tiff is in the G4 or G3 codec? PIL don't support G3/G4 encoding. You can use freeimagepy that is another python graphic package. Michele (freeimagepy developer

python image library TIFF

2005-09-22 Thread bryan rasmussen
Hi does anyone have any experience using the Python Image library to determine if a Tiff is in the G4 or G3 codec? -- http://mail.python.org/mailman/listinfo/python-list