mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-16 21:30:23 +00:00
Fixing some spelling. Fixes #29. Thanks Nai!
This commit is contained in:
parent
f9b79aa67f
commit
a3ed700117
1 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ Create your specifications.
|
|||
width = 600
|
||||
|
||||
# now let's create an adjustment processor to enhance the image at small sizes
|
||||
class EnchanceThumb(processors.Adjustment):
|
||||
class EnhanceThumb(processors.Adjustment):
|
||||
contrast = 1.2
|
||||
sharpness = 1.1
|
||||
|
||||
|
|
@ -70,7 +70,7 @@ Create your specifications.
|
|||
quality = 90 # defaults to 70
|
||||
access_as = 'thumbnail_image'
|
||||
pre_cache = True
|
||||
processors = [ResizeThumb, EnchanceThumb]
|
||||
processors = [ResizeThumb, EnhanceThumb]
|
||||
|
||||
# and our display spec
|
||||
class Display(ImageSpec):
|
||||
|
|
|
|||
Loading…
Reference in a new issue