Mark Shure
2003-08-26 19:04:57 UTC
Hello,
File "C:/Python22/imageDraw_test2.py", line 3, in ?
draw = ImageDraw.Draw(im)
File "C:\Python22\lib\site-packages\PIL\ImageDraw.py", line 72, in __init__
self.draw = Image.core.draw(self.im, blend)
AttributeError: 'module' object has no attribute 'draw'
I'm using Python 2.2.1 under Win2k with PIL 1.1.4 (binaries installed using "PIL-1.1.4.win32-py2.2.exe").
I haven't been able to find any leads on the web or in the Image-SIG mailing list archive. Any suggestions would be appreciated.
Thanks,
Mark Shure
<***@ccf.org>
import Image, ImageDraw
im = Image.open("lena.ppm")
draw = ImageDraw.Draw(im)
Traceback (most recent call last):im = Image.open("lena.ppm")
draw = ImageDraw.Draw(im)
File "C:/Python22/imageDraw_test2.py", line 3, in ?
draw = ImageDraw.Draw(im)
File "C:\Python22\lib\site-packages\PIL\ImageDraw.py", line 72, in __init__
self.draw = Image.core.draw(self.im, blend)
AttributeError: 'module' object has no attribute 'draw'
I'm using Python 2.2.1 under Win2k with PIL 1.1.4 (binaries installed using "PIL-1.1.4.win32-py2.2.exe").
I haven't been able to find any leads on the web or in the Image-SIG mailing list archive. Any suggestions would be appreciated.
Thanks,
Mark Shure
<***@ccf.org>