mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 09:44:31 +03:00
Merge pull request #1804 from hugovk/tiff_jpegtables
Test saving TIFF with JPEGTables tag
This commit is contained in:
commit
bb91abe147
BIN
Tests/images/hopper_jpg.tif
Normal file
BIN
Tests/images/hopper_jpg.tif
Normal file
Binary file not shown.
|
@ -437,6 +437,19 @@ class TestFileTiff(PillowTestCase):
|
||||||
self.assertEqual(im.size, (10, 10))
|
self.assertEqual(im.size, (10, 10))
|
||||||
im.load()
|
im.load()
|
||||||
|
|
||||||
|
def test_save_tiff_with_jpegtables(self):
|
||||||
|
# Arrange
|
||||||
|
outfile = self.tempfile("temp.tif")
|
||||||
|
|
||||||
|
# Created with ImageMagick: convert hopper.jpg hopper_jpg.tif
|
||||||
|
# Contains JPEGTables (347) tag
|
||||||
|
infile = "Tests/images/hopper_jpg.tif"
|
||||||
|
im = Image.open(infile)
|
||||||
|
|
||||||
|
# Act / Assert
|
||||||
|
# Should not raise UnicodeDecodeError or anything else
|
||||||
|
im.save(outfile)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user