Apply image orientation metadata before resizing. (#345)

pull/348/head
Tyler Kennedy 2023-01-01 13:40:56 -05:00 zatwierdzone przez GitHub
rodzic 5f1d7b5253
commit b19f05859d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -24,6 +24,16 @@ def resize_image(
to fit if needed)
"""
with Image.open(image) as img:
try:
# Take any orientation EXIF data, apply it, and strip the
# orientation data from the new image.
img = ImageOps.exif_transpose(img)
except Exception: # noqa
# exif_transpose can crash with different errors depending on
# the EXIF keys. Just ignore them all, better to have a rotated
# image than no image.
pass
if cover:
resized_image = ImageOps.fit(img, size, method=Image.Resampling.BILINEAR)
else: