mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 18:26:17 +03:00
Check that orientation is still absent after reloading Exif
This commit is contained in:
parent
7e1261c6a0
commit
bac83f7dd3
|
@ -352,6 +352,9 @@ def test_exif_transpose():
|
|||
transposed_im = ImageOps.exif_transpose(im)
|
||||
assert 0x0112 not in transposed_im.getexif()
|
||||
|
||||
transposed_im._reload_exif()
|
||||
assert 0x0112 not in transposed_im.getexif()
|
||||
|
||||
# Orientation from "Raw profile type exif" info key
|
||||
# This test image has been manually hexedited from exif_imagemagick.png
|
||||
# to have a different orientation
|
||||
|
|
Loading…
Reference in New Issue
Block a user