mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Target mode is I, check pixels
This commit is contained in:
parent
60cbe9fe44
commit
a89c4e455d
|
@ -201,7 +201,9 @@ class TestFileTiff(PillowTestCase):
|
||||||
def test_16bit_s(self):
|
def test_16bit_s(self):
|
||||||
im = Image.open('Tests/images/16bit.s.tif')
|
im = Image.open('Tests/images/16bit.s.tif')
|
||||||
im.load()
|
im.load()
|
||||||
self.assertEqual(im.mode, 'I;16S')
|
self.assertEqual(im.mode, 'I')
|
||||||
|
self.assertEqual(im.getpixel((0,0)),32767)
|
||||||
|
self.assertEqual(im.getpixel((0,1)),0)
|
||||||
|
|
||||||
def test_12bit_rawmode(self):
|
def test_12bit_rawmode(self):
|
||||||
""" Are we generating the same interpretation
|
""" Are we generating the same interpretation
|
||||||
|
|
Loading…
Reference in New Issue
Block a user