From b2bbfa03a308bb34232bcdca3d1a712ef9e2792b Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 3 Mar 2019 22:18:36 +0100 Subject: [PATCH] ImageProcessor has a fifth output size that will not add an extension and lowest width and height are 3000x3000. --- processor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/processor.py b/processor.py index 62ddb1e..4e5f457 100644 --- a/processor.py +++ b/processor.py @@ -14,7 +14,8 @@ OUTPUT_SIZES = [ { 'dimensions': (250, 250), 'name': 'thumb', 'crop': True }, { 'dimensions': (650, 650), 'name': 'sm', 'crop': False }, { 'dimensions': (1200, 1200), 'name': 'md', 'crop': False }, - { 'dimensions': (1800, 1800), 'name': 'lg', 'crop': False }] + { 'dimensions': (1800, 1800), 'name': 'lg', 'crop': False }, + { 'dimensions': (3000, 3000), 'name': '', 'crop': False }]