summaryrefslogtreecommitdiffstats
path: root/core/imagekit_specs.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/imagekit_specs.py')
-rw-r--r--core/imagekit_specs.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/imagekit_specs.py b/core/imagekit_specs.py
index fd2e0a1..0cec6e5 100644
--- a/core/imagekit_specs.py
+++ b/core/imagekit_specs.py
@@ -1,21 +1,21 @@
from imagekit.specs import ImageSpec
from imagekit import processors
-class ResizeThumb(processors.Resize):
- width = 100
+class ResizeThumb(processors.Resize):
+ width = 100
crop = False
class ResizeDisplay(processors.Resize):
- width = 600
-
-#class EnhanceThumb(processors.Adjustment):
+ width = 600
+
+#class EnhanceThumb(processors.Adjustment):
#contrast = 1.2
#sharpness = 2
-class Thumbnail(ImageSpec):
- access_as = 'thumbnail_image'
- pre_cache = True
- processors = [ResizeThumb]
+class Thumbnail(ImageSpec):
+ access_as = 'thumbnail_image'
+ pre_cache = True
+ processors = [ResizeThumb]
class Display(ImageSpec):
increment_count = True