2013-10-16 09:01:30 +04:00
|
|
|
from PIL import Image
|
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
from .helper import PillowTestCase
|
|
|
|
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestFormatLab(PillowTestCase):
|
|
|
|
def test_white(self):
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open("Tests/images/lab.tif") as i:
|
|
|
|
i.load()
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
self.assertEqual(i.mode, "LAB")
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
self.assertEqual(i.getbands(), ("L", "A", "B"))
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
k = i.getpixel((0, 0))
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
L = i.getdata(0)
|
|
|
|
a = i.getdata(1)
|
|
|
|
b = i.getdata(2)
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
self.assertEqual(k, (255, 128, 128))
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2019-06-13 18:54:24 +03:00
|
|
|
self.assertEqual(list(L), [255] * 100)
|
|
|
|
self.assertEqual(list(a), [128] * 100)
|
|
|
|
self.assertEqual(list(b), [128] * 100)
|
2013-10-16 09:01:30 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_green(self):
|
|
|
|
# l= 50 (/100), a = -100 (-128 .. 128) b=0 in PS
|
|
|
|
# == RGB: 0, 152, 117
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open("Tests/images/lab-green.tif") as i:
|
|
|
|
k = i.getpixel((0, 0))
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(k, (128, 28, 128))
|
|
|
|
|
|
|
|
def test_red(self):
|
|
|
|
# l= 50 (/100), a = 100 (-128 .. 128) b=0 in PS
|
|
|
|
# == RGB: 255, 0, 124
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open("Tests/images/lab-red.tif") as i:
|
|
|
|
k = i.getpixel((0, 0))
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(k, (128, 228, 128))
|