[svn] Switch from photologue to imagekit. Less bloat.

Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8338 by cucc @ 5/11/2009 3:08 AM
This commit is contained in:
substantialnoninfringinguser
2009-05-13 06:24:52 +01:00
parent 8c68a8a0d7
commit b509390575
12 changed files with 604 additions and 0 deletions

17
imagekit/lib.py Normal file
View File

@@ -0,0 +1,17 @@
# Required PIL classes may or may not be available from the root namespace
# depending on the installation method used.
try:
import Image
import ImageFile
import ImageFilter
import ImageEnhance
import ImageColor
except ImportError:
try:
from PIL import Image
from PIL import ImageFile
from PIL import ImageFilter
from PIL import ImageEnhance
from PIL import ImageColor
except ImportError:
raise ImportError('ImageKit was unable to import the Python Imaging Library. Please confirm it`s installed and available on your current Python path.')