2014-09-22 20:00:22 +04:00
|
|
|
from helper import unittest, PillowTestCase, hopper
|
2013-03-19 22:43:45 +04:00
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
|
2013-03-27 21:00:35 +04:00
|
|
|
try:
|
2013-04-09 08:53:59 +04:00
|
|
|
from PIL import _webp
|
2014-10-01 17:50:33 +04:00
|
|
|
except ImportError:
|
2014-06-10 13:10:47 +04:00
|
|
|
# Skip in setUp()
|
|
|
|
pass
|
2013-03-19 22:43:45 +04:00
|
|
|
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestFileWebp(PillowTestCase):
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def setUp(self):
|
|
|
|
try:
|
|
|
|
from PIL import _webp
|
2014-10-01 17:50:33 +04:00
|
|
|
except ImportError:
|
2014-06-10 13:10:47 +04:00
|
|
|
self.skipTest('WebP support not installed')
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_version(self):
|
|
|
|
_webp.WebPDecoderVersion()
|
|
|
|
_webp.WebPDecoderBuggyAlpha()
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_read_rgb(self):
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-09-22 20:00:22 +04:00
|
|
|
file_path = "Tests/images/hopper.webp"
|
2014-06-10 13:10:47 +04:00
|
|
|
image = Image.open(file_path)
|
2013-03-20 00:40:10 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(image.mode, "RGB")
|
|
|
|
self.assertEqual(image.size, (128, 128))
|
|
|
|
self.assertEqual(image.format, "WEBP")
|
|
|
|
image.load()
|
|
|
|
image.getdata()
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# generated with:
|
2014-09-22 20:00:22 +04:00
|
|
|
# dwebp -ppm ../../Tests/images/hopper.webp -o hopper_webp_bits.ppm
|
|
|
|
target = Image.open('Tests/images/hopper_webp_bits.ppm')
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image_similar(image, target, 20.0)
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_write_rgb(self):
|
|
|
|
"""
|
|
|
|
Can we write a RGB mode file to webp without error.
|
|
|
|
Does it have the bits we expect?
|
|
|
|
"""
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
temp_file = self.tempfile("temp.webp")
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-09-22 20:00:22 +04:00
|
|
|
hopper("RGB").save(temp_file)
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
image = Image.open(temp_file)
|
|
|
|
image.load()
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(image.mode, "RGB")
|
|
|
|
self.assertEqual(image.size, (128, 128))
|
|
|
|
self.assertEqual(image.format, "WEBP")
|
|
|
|
image.load()
|
|
|
|
image.getdata()
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# If we're using the exact same version of WebP, this test should pass.
|
|
|
|
# but it doesn't if the WebP is generated on Ubuntu and tested on
|
|
|
|
# Fedora.
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-09-22 20:00:22 +04:00
|
|
|
# generated with: dwebp -ppm temp.webp -o hopper_webp_write.ppm
|
|
|
|
# target = Image.open('Tests/images/hopper_webp_write.ppm')
|
2014-06-10 13:10:47 +04:00
|
|
|
# self.assert_image_equal(image, target)
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# This test asserts that the images are similar. If the average pixel
|
|
|
|
# difference between the two images is less than the epsilon value,
|
|
|
|
# then we're going to accept that it's a reasonable lossy version of
|
2014-09-22 20:00:22 +04:00
|
|
|
# the image. The old lena images for WebP are showing ~16 on
|
2014-06-10 13:10:47 +04:00
|
|
|
# Ubuntu, the jpegs are showing ~18.
|
2014-09-22 20:00:22 +04:00
|
|
|
target = hopper("RGB")
|
|
|
|
self.assert_image_similar(image, target, 12)
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2015-07-03 08:03:25 +03:00
|
|
|
def test_write_unsupported_mode(self):
|
|
|
|
temp_file = self.tempfile("temp.webp")
|
|
|
|
|
2017-09-01 14:05:40 +03:00
|
|
|
im = hopper("L")
|
|
|
|
self.assertRaises(IOError, im.save, temp_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2017-05-12 18:11:58 +03:00
|
|
|
def test_WebPEncode_with_invalid_args(self):
|
|
|
|
self.assertRaises(TypeError, _webp.WebPEncode)
|
|
|
|
|
|
|
|
def test_WebPDecode_with_invalid_args(self):
|
|
|
|
self.assertRaises(TypeError, _webp.WebPDecode)
|
2013-10-22 23:32:31 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|