Igor Jerosimić

Results 3 comments of Igor Jerosimić

I'm not the author but I have to ask: Why waste time and fix issues for EOL product? PHP 5.3 was EOL 7 years ago... Since you tried the same...

Updated @baxeico's solution with `exif_transpose`: ``` def render_variations_and_autorotate(file_name, variations, storage): with storage.open(file_name) as f: with Image.open(f) as image: transposed_image = ImageOps.exif_transpose(image) if not getattr(storage, 'file_overwrite', False): storage.delete(file_name) with BytesIO() as...