[MERGE] forward port of branch saas-3 up to a939efd

This commit is contained in:
Martin Trigaux 2015-04-17 14:40:19 +02:00
commit 18a0ba302b
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ def image_save_for_web(image, fp=None, format=None):
image.save(img, **opt)
return img.getvalue()
def image_resize_image_big(base64_source, size=(1204, 1024), encoding='base64', filetype=None, avoid_if_small=True):
def image_resize_image_big(base64_source, size=(1024, 1024), encoding='base64', filetype=None, avoid_if_small=True):
""" Wrapper on image_resize_image, to resize images larger than the standard
'big' image size: 1024x1024px.
:param size, encoding, filetype, avoid_if_small: refer to image_resize_image