diff -Naur python-module-pycaptcha-0.4.orig/Captcha/Visual/Backgrounds.py python-module-pycaptcha-0.4/Captcha/Visual/Backgrounds.py --- python-module-pycaptcha-0.4.orig/Captcha/Visual/Backgrounds.py 2006-02-05 07:25:47 +0200 +++ python-module-pycaptcha-0.4/Captcha/Visual/Backgrounds.py 2008-09-16 11:19:37 +0300 @@ -9,7 +9,7 @@ from Captcha.Visual import Layer, Pictures import random, os -import ImageDraw, Image +from PIL import ImageDraw, Image class SolidColor(Layer): diff -Naur python-module-pycaptcha-0.4.orig/Captcha/Visual/Base.py python-module-pycaptcha-0.4/Captcha/Visual/Base.py --- python-module-pycaptcha-0.4.orig/Captcha/Visual/Base.py 2006-02-05 07:25:47 +0200 +++ python-module-pycaptcha-0.4/Captcha/Visual/Base.py 2008-09-16 11:19:14 +0300 @@ -9,7 +9,7 @@ # import Captcha -import Image +from PIL import Image __all__ = ['ImageCaptcha', 'Layer'] diff -Naur python-module-pycaptcha-0.4.orig/Captcha/Visual/Distortions.py python-module-pycaptcha-0.4/Captcha/Visual/Distortions.py --- python-module-pycaptcha-0.4.orig/Captcha/Visual/Distortions.py 2006-02-05 07:25:47 +0200 +++ python-module-pycaptcha-0.4/Captcha/Visual/Distortions.py 2008-09-16 11:19:23 +0300 @@ -8,7 +8,7 @@ # from Captcha.Visual import Layer -import ImageDraw, Image +from PIL import ImageDraw, Image import random, math diff -Naur python-module-pycaptcha-0.4.orig/Captcha/Visual/Pictures.py python-module-pycaptcha-0.4/Captcha/Visual/Pictures.py --- python-module-pycaptcha-0.4.orig/Captcha/Visual/Pictures.py 2006-02-05 07:25:47 +0200 +++ python-module-pycaptcha-0.4/Captcha/Visual/Pictures.py 2008-09-16 11:19:30 +0300 @@ -8,7 +8,7 @@ # from Captcha import File -import Image +from PIL import Image class ImageFactory(File.RandomFileFactory): diff -Naur python-module-pycaptcha-0.4.orig/Captcha/Visual/Text.py python-module-pycaptcha-0.4/Captcha/Visual/Text.py --- python-module-pycaptcha-0.4.orig/Captcha/Visual/Text.py 2006-02-05 07:25:47 +0200 +++ python-module-pycaptcha-0.4/Captcha/Visual/Text.py 2008-09-16 11:19:43 +0300 @@ -9,7 +9,7 @@ import random, os from Captcha import Visual, File -import ImageFont, ImageDraw +from PIL import ImageFont, ImageDraw class FontFactory(File.RandomFileFactory):