mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-05-02 02:14:43 +00:00
13 lines
321 B
Python
13 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 = []
|