diff --git a/multiplexer/src/api/remove.py b/multiplexer/src/api/remove.py index 2f210c3..952f72f 100644 --- a/multiplexer/src/api/remove.py +++ b/multiplexer/src/api/remove.py @@ -43,6 +43,9 @@ def post(): if not image_path: return make_response(correlation_id, True, error_id='002') + with Timer('Rotate image, if needed'): + image.rotate(image_path) + with Timer('Extract image dimensions'): original_dimensions = image.get_dimensions(image_path)