mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-06 10:51:45 +01:00
Fixed spelling of a variable name
This commit is contained in:
parent
5de88ce92d
commit
24a016e76a
@ -12,10 +12,10 @@ import troggle.settings as settings
|
|||||||
from troggle.lib import version_control
|
from troggle.lib import version_control
|
||||||
|
|
||||||
MAX_IMAGE_WIDTH = 1000
|
MAX_IMAGE_WIDTH = 1000
|
||||||
MAX_IMAGE_HEIGTH = 800
|
MAX_IMAGE_HEIGHT = 800
|
||||||
|
|
||||||
THUMBNAIL_WIDTH = 200
|
THUMBNAIL_WIDTH = 200
|
||||||
THUMBNAIL_HEIGTH = 200
|
THUMBNAIL_HEIGHT = 200
|
||||||
|
|
||||||
def image_selector(request, path):
|
def image_selector(request, path):
|
||||||
'''Returns available images'''
|
'''Returns available images'''
|
||||||
@ -48,10 +48,10 @@ def new_image_form(request, path):
|
|||||||
binary_data.write(chunk)
|
binary_data.write(chunk)
|
||||||
i = Image.open(binary_data)
|
i = Image.open(binary_data)
|
||||||
width, height = i.size
|
width, height = i.size
|
||||||
if width > MAX_IMAGE_WIDTH or height > MAX_IMAGE_HEIGTH:
|
if width > MAX_IMAGE_WIDTH or height > MAX_IMAGE_HEIGHT:
|
||||||
scale = max(width / MAX_IMAGE_WIDTH, height / MAX_IMAGE_HEIGTH)
|
scale = max(width / MAX_IMAGE_WIDTH, height / MAX_IMAGE_HEIGHT)
|
||||||
i = i.resize((int(width / scale), int(height / scale)), Image.ANTIALIAS)
|
i = i.resize((int(width / scale), int(height / scale)), Image.ANTIALIAS)
|
||||||
tscale = max(width / THUMBNAIL_WIDTH, height / THUMBNAIL_HEIGTH)
|
tscale = max(width / THUMBNAIL_WIDTH, height / THUMBNAIL_HEIGHT)
|
||||||
thumbnail = i.resize((int(width / tscale), int(height / tscale)), Image.ANTIALIAS)
|
thumbnail = i.resize((int(width / tscale), int(height / tscale)), Image.ANTIALIAS)
|
||||||
ib = io.BytesIO()
|
ib = io.BytesIO()
|
||||||
i.save(ib, format="png")
|
i.save(ib, format="png")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user