Pillow/Tests/test_image_quantize.py

68 lines
2.5 KiB
Python
Raw Normal View History

from PIL import Image
from .helper import PillowTestCase, hopper
2014-06-10 13:10:47 +04:00
class TestImageQuantize(PillowTestCase):
def test_sanity(self):
image = hopper()
converted = image.quantize()
2019-06-13 18:54:24 +03:00
self.assert_image(converted, "P", converted.size)
self.assert_image_similar(converted.convert("RGB"), image, 10)
image = hopper()
2019-06-13 18:54:24 +03:00
converted = image.quantize(palette=hopper("P"))
self.assert_image(converted, "P", converted.size)
self.assert_image_similar(converted.convert("RGB"), image, 60)
def test_libimagequant_quantize(self):
image = hopper()
try:
converted = image.quantize(100, Image.LIBIMAGEQUANT)
except ValueError as ex:
2019-06-13 18:54:24 +03:00
if "dependency" in str(ex).lower():
self.skipTest("libimagequant support not available")
else:
raise
2019-06-13 18:54:24 +03:00
self.assert_image(converted, "P", converted.size)
self.assert_image_similar(converted.convert("RGB"), image, 15)
self.assertEqual(len(converted.getcolors()), 100)
2014-06-10 13:10:47 +04:00
def test_octree_quantize(self):
image = hopper()
converted = image.quantize(100, Image.FASTOCTREE)
2019-06-13 18:54:24 +03:00
self.assert_image(converted, "P", converted.size)
self.assert_image_similar(converted.convert("RGB"), image, 20)
self.assertEqual(len(converted.getcolors()), 100)
2014-06-10 13:10:47 +04:00
def test_rgba_quantize(self):
2019-06-13 18:54:24 +03:00
image = hopper("RGBA")
self.assertRaises(ValueError, image.quantize, method=0)
2014-06-10 13:10:47 +04:00
2019-03-16 05:36:58 +03:00
self.assertEqual(image.quantize().convert().mode, "RGBA")
2015-08-22 16:03:11 +03:00
def test_quantize(self):
2019-11-25 23:03:23 +03:00
with Image.open("Tests/images/caption_6_33_22.png") as image:
image = image.convert("RGB")
converted = image.quantize()
2019-06-13 18:54:24 +03:00
self.assert_image(converted, "P", converted.size)
self.assert_image_similar(converted.convert("RGB"), image, 1)
def test_quantize_no_dither(self):
image = hopper()
2019-11-25 23:03:23 +03:00
with Image.open("Tests/images/caption_6_33_22.png") as palette:
palette = palette.convert("P")
converted = image.quantize(dither=0, palette=palette)
2019-06-13 18:54:24 +03:00
self.assert_image(converted, "P", converted.size)
def test_quantize_dither_diff(self):
image = hopper()
2019-11-25 23:03:23 +03:00
with Image.open("Tests/images/caption_6_33_22.png") as palette:
palette = palette.convert("P")
dither = image.quantize(dither=1, palette=palette)
nodither = image.quantize(dither=0, palette=palette)
self.assertNotEqual(dither.tobytes(), nodither.tobytes())