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