[Image-SIG] Only just now getting on the PIL

Kent Tenney kent@springfed.com
Thu, 8 Feb 2001 09:57:44 -0600


Howdy,

I installed http://w1.132.telia.com/~u13208596/pil/pil111py.zip
and http://w1.132.telia.com/~u13208596/pil/_imaging20.dll
from http://w1.132.telia.com/~u13208596/pil/index.htm

I put _imaging.dll in \python20\DLL also in \windows\system

test_image.py
import pil.Image
infile =3D 'c:\\python20\\tt.jpg'
im =3D pil.Image.open(infile)

>>> im.size
(800, 600)

>>> im.rotate(90)
Traceback (innermost last):
  File "<interactive input>", line 1, in ?
  File "Image.py", line 644, in rotate
  File "ImageFile.py", line 125, in load
  File "ImageFile.py", line 175, in load_prepare
  File "Image.py", line 43, in __getattr__
ImportError: The _imaging C module is not installed

What do I need to do?

Thanks,
Kent