Skip to content
Snippets Groups Projects
Commit b77bbd01 authored by Sébastien Theys's avatar Sébastien Theys
Browse files

[FIX] tools: fix condition of image_process quick return


Follow up of 344614b5

If base64_source is falsy, we don't need to check the other parameters.

closes odoo/odoo#35489

Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
parent 857c4851
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ class ImageProcess():
:param quality: quality setting to apply. Default to 0.
- for JPEG: 1 is worse, 95 is best. Values above 95 should be
avoided. Fasly values will fallback to 95, but only if the image
avoided. Falsy values will fallback to 95, but only if the image
was changed, otherwise the original image is returned.
- for PNG: set falsy to prevent conversion to a WEB palette.
- for other formats: no effect.
......@@ -245,7 +245,7 @@ def image_process(base64_source, size=(0, 0), verify_resolution=False, quality=0
"""Process the `base64_source` image by executing the given operations and
return the result as a base64 encoded image.
"""
if (not base64_source or not size or (not size[0] and not size[1])) and not verify_resolution and not quality and not crop and not colorize and not output_format:
if not base64_source or ((not size or (not size[0] and not size[1])) and not verify_resolution and not quality and not crop and not colorize and not output_format):
# for performance: don't do anything if the image is falsy or if
# no operations have been requested
return base64_source
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment