mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 02:06:18 +03:00
Reenabling and fixing the former test_xyres_tiff test for integer resolutions
This commit is contained in:
parent
4adbc9735c
commit
9286c9e460
|
@ -85,12 +85,16 @@ class TestFileTiff(PillowTestCase):
|
|||
|
||||
self.assertEqual(im.info['dpi'], (72., 72.))
|
||||
|
||||
def xtest_int_resolution(self):
|
||||
def test_int_resolution(self):
|
||||
from PIL.TiffImagePlugin import X_RESOLUTION, Y_RESOLUTION
|
||||
filename = "Tests/images/pil168.tif"
|
||||
im = Image.open(filename)
|
||||
|
||||
# Try to read a file where X,Y_RESOLUTION are ints
|
||||
im.tag[X_RESOLUTION] = (72,)
|
||||
im.tag[Y_RESOLUTION] = (72,)
|
||||
im.tag_v2[X_RESOLUTION] = 71
|
||||
im.tag_v2[Y_RESOLUTION] = 71
|
||||
im._setup()
|
||||
self.assertEqual(im.info['dpi'], (72., 72.))
|
||||
self.assertEqual(im.info['dpi'], (71., 71.))
|
||||
|
||||
def test_invalid_file(self):
|
||||
invalid_file = "Tests/images/flower.jpg"
|
||||
|
|
Loading…
Reference in New Issue
Block a user