Sharpen thumbnails.

This commit is contained in:
Marcus Scholz 2020-09-18 10:47:16 +02:00
parent 74a9ee4f39
commit 9b160d2df0
1 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ from django.conf import settings
settings.THUMBNAIL_ALIASES = {
'': {
'thumbnail': {'size': (300, 200), 'crop': True},
'hero': {'size': (700, 466), 'crop': True},
'large': {'size': (1920, 1920), 'crop': False},
'thumbnail': {'size': (300, 200), 'sharpen': True, 'crop': True},
'hero': {'size': (700, 466), 'sharpen': True, 'crop': True},
'large': {'size': (1920, 1920), 'sharpen': True, 'crop': False},
},
}