django-imagekit/src/imagekit/specs.py
2009-01-04 12:38:06 -05:00

12 lines
321 B
Python

""" Base imagekit specification classes
This module holds the base implementations and defaults for imagekit
specification classes. Users import and subclass these classes to define new
specifications.
"""
class Spec(object):
increment_count = False
pre_cache = False
jpeg_quality = 70
processors = []