Added EXIF transpose to small thumbnails

This commit is contained in:
Travis Abendshien 2024-05-01 02:58:43 -07:00
parent 8604a7f08f
commit 3d5ed3a948

View file

@ -265,6 +265,8 @@ class ThumbRenderer(QObject):
if image.mode != 'RGB':
image = image.convert(mode='RGB')
image = ImageOps.exif_transpose(image)
# Videos =======================================================
elif extension in VIDEO_TYPES:
video = cv2.VideoCapture(filepath)