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
|
2017-09-28 05:28:43 +03:00
|
|
|
HAVE_WEBP = True
|
2014-10-01 17:50:33 +04:00
|
|
|
except ImportError:
|
2017-09-28 05:28:43 +03:00
|
|
|
HAVE_WEBP = False
|
2013-03-19 22:43:45 +04:00
|
|
|
|
2017-10-02 01:23:18 +03: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):
|
2017-09-28 05:28:43 +03:00
|
|
|
if not HAVE_WEBP:
|
2014-06-10 13:10:47 +04:00
|
|
|
self.skipTest('WebP support not installed')
|
2017-09-28 05:28:43 +03:00
|
|
|
return
|
|
|
|
|
2018-08-04 00:21:47 +03:00
|
|
|
self.rgb_mode = "RGB"
|
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):
|
2017-09-27 06:27:40 +03:00
|
|
|
"""
|
2017-10-02 01:23:18 +03:00
|
|
|
Can we read a RGB mode WebP file without error?
|
2017-09-27 06:27:40 +03:00
|
|
|
Does it have the bits we expect?
|
|
|
|
"""
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2018-08-04 00:21:47 +03:00
|
|
|
image = Image.open("Tests/images/hopper.webp")
|
2013-03-20 00:40:10 +04:00
|
|
|
|
2017-09-28 05:28:43 +03:00
|
|
|
self.assertEqual(image.mode, self.rgb_mode)
|
2014-06-10 13:10:47 +04:00
|
|
|
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
|
2018-08-04 00:21:47 +03:00
|
|
|
self.assert_image_similar_tofile(image, 'Tests/images/hopper_webp_bits.ppm', 1.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
|
|
|
|
2017-09-28 05:28:43 +03:00
|
|
|
hopper(self.rgb_mode).save(temp_file)
|
2014-06-10 13:10:47 +04:00
|
|
|
image = Image.open(temp_file)
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2017-09-28 05:28:43 +03:00
|
|
|
self.assertEqual(image.mode, self.rgb_mode)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(image.size, (128, 128))
|
|
|
|
self.assertEqual(image.format, "WEBP")
|
|
|
|
image.load()
|
|
|
|
image.getdata()
|
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
|
2018-08-04 00:21:47 +03:00
|
|
|
self.assert_image_similar_tofile(image, 'Tests/images/hopper_webp_write.ppm', 12.0)
|
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.
|
2017-09-28 05:28:43 +03:00
|
|
|
target = hopper(self.rgb_mode)
|
2017-09-27 06:27:40 +03:00
|
|
|
self.assert_image_similar(image, target, 12.0)
|
|
|
|
|
|
|
|
def test_write_unsupported_mode_L(self):
|
|
|
|
"""
|
2017-10-02 01:23:18 +03:00
|
|
|
Saving a black-and-white file to WebP format should work, and be
|
2017-09-27 06:27:40 +03:00
|
|
|
similar to the original file.
|
|
|
|
"""
|
2013-07-01 02:42:19 +04:00
|
|
|
|
2015-07-03 08:03:25 +03:00
|
|
|
temp_file = self.tempfile("temp.webp")
|
2017-09-27 06:27:40 +03:00
|
|
|
hopper("L").save(temp_file)
|
|
|
|
image = Image.open(temp_file)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2017-09-28 05:28:43 +03:00
|
|
|
self.assertEqual(image.mode, self.rgb_mode)
|
2017-09-27 06:27:40 +03:00
|
|
|
self.assertEqual(image.size, (128, 128))
|
|
|
|
self.assertEqual(image.format, "WEBP")
|
|
|
|
|
|
|
|
image.load()
|
|
|
|
image.getdata()
|
2017-09-28 05:28:43 +03:00
|
|
|
target = hopper("L").convert(self.rgb_mode)
|
2017-09-27 06:27:40 +03:00
|
|
|
|
|
|
|
self.assert_image_similar(image, target, 10.0)
|
|
|
|
|
|
|
|
def test_write_unsupported_mode_P(self):
|
|
|
|
"""
|
2017-10-02 01:23:18 +03:00
|
|
|
Saving a palette-based file to WebP format should work, and be
|
2017-09-27 06:27:40 +03:00
|
|
|
similar to the original file.
|
|
|
|
"""
|
|
|
|
|
|
|
|
temp_file = self.tempfile("temp.webp")
|
|
|
|
hopper("P").save(temp_file)
|
|
|
|
image = Image.open(temp_file)
|
|
|
|
|
2017-09-28 05:28:43 +03:00
|
|
|
self.assertEqual(image.mode, self.rgb_mode)
|
2017-09-27 06:27:40 +03:00
|
|
|
self.assertEqual(image.size, (128, 128))
|
|
|
|
self.assertEqual(image.format, "WEBP")
|
|
|
|
|
|
|
|
image.load()
|
|
|
|
image.getdata()
|
2017-09-28 05:28:43 +03:00
|
|
|
target = hopper("P").convert(self.rgb_mode)
|
2017-09-27 06:27:40 +03:00
|
|
|
|
|
|
|
self.assert_image_similar(image, target, 50.0)
|
2015-07-03 08:03:25 +03:00
|
|
|
|
2017-05-12 18:11:58 +03:00
|
|
|
def test_WebPEncode_with_invalid_args(self):
|
2017-09-27 06:27:40 +03:00
|
|
|
"""
|
|
|
|
Calling encoder functions with no arguments should result in an error.
|
|
|
|
"""
|
|
|
|
|
2017-09-28 06:21:18 +03:00
|
|
|
if _webp.HAVE_WEBPANIM:
|
2017-09-27 06:27:40 +03:00
|
|
|
self.assertRaises(TypeError, _webp.WebPAnimEncoder)
|
2017-05-12 18:11:58 +03:00
|
|
|
self.assertRaises(TypeError, _webp.WebPEncode)
|
|
|
|
|
|
|
|
def test_WebPDecode_with_invalid_args(self):
|
2017-09-27 06:27:40 +03:00
|
|
|
"""
|
|
|
|
Calling decoder functions with no arguments should result in an error.
|
|
|
|
"""
|
|
|
|
|
2017-09-28 06:21:18 +03:00
|
|
|
if _webp.HAVE_WEBPANIM:
|
2017-09-27 06:27:40 +03:00
|
|
|
self.assertRaises(TypeError, _webp.WebPAnimDecoder)
|
2017-05-12 18:11:58 +03:00
|
|
|
self.assertRaises(TypeError, _webp.WebPDecode)
|
2013-10-22 23:32:31 +04:00
|
|
|
|
2018-09-08 16:08:17 +03:00
|
|
|
def test_no_resource_warning(self):
|
|
|
|
file_path = "Tests/images/hopper.webp"
|
|
|
|
image = Image.open(file_path)
|
|
|
|
|
|
|
|
temp_file = self.tempfile("temp.webp")
|
|
|
|
self.assert_warning(None, image.save, temp_file)
|
|
|
|
|
2017-09-27 06:27:40 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|