summaryrefslogtreecommitdiffstats
path: root/expo/imagekit_specs.py
diff options
context:
space:
mode:
Diffstat (limited to 'expo/imagekit_specs.py')
-rw-r--r--expo/imagekit_specs.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/expo/imagekit_specs.py b/expo/imagekit_specs.py
index 243cb9f..fd2e0a1 100644
--- a/expo/imagekit_specs.py
+++ b/expo/imagekit_specs.py
@@ -3,20 +3,19 @@ from imagekit import processors
class ResizeThumb(processors.Resize):
width = 100
- height = 75
- crop = True
+ crop = False
class ResizeDisplay(processors.Resize):
width = 600
-class EnhanceThumb(processors.Adjustment):
- contrast = 1.2
- sharpness = 1.1
+#class EnhanceThumb(processors.Adjustment):
+ #contrast = 1.2
+ #sharpness = 2
class Thumbnail(ImageSpec):
access_as = 'thumbnail_image'
pre_cache = True
- processors = [ResizeThumb, EnhanceThumb]
+ processors = [ResizeThumb]
class Display(ImageSpec):
increment_count = True