mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
25 lines
752 B
Python
25 lines
752 B
Python
from PIL import Image
|
|
|
|
from helper import PillowTestCase, unittest
|
|
|
|
|
|
class TestFileBlp(PillowTestCase):
|
|
def test_load_blp2_raw(self):
|
|
im = Image.open("Tests/images/blp/blp2_raw.blp")
|
|
target = Image.open("Tests/images/blp/blp2_raw.png")
|
|
self.assert_image_equal(im, target)
|
|
|
|
def test_load_blp2_dxt1(self):
|
|
im = Image.open("Tests/images/blp/blp2_dxt1.blp")
|
|
target = Image.open("Tests/images/blp/blp2_dxt1.png")
|
|
self.assert_image_equal(im, target)
|
|
|
|
def test_load_blp2_dxt1a(self):
|
|
im = Image.open("Tests/images/blp/blp2_dxt1a.blp")
|
|
target = Image.open("Tests/images/blp/blp2_dxt1a.png")
|
|
self.assert_image_equal(im, target)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|