mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +03:00
commit
0f379a2450
|
@ -6,6 +6,12 @@ from io import BytesIO
|
||||||
import zlib
|
import zlib
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
try:
|
||||||
|
from PIL import _webp
|
||||||
|
HAVE_WEBP = True
|
||||||
|
except ImportError:
|
||||||
|
HAVE_WEBP = False
|
||||||
|
|
||||||
codecs = dir(Image.core)
|
codecs = dir(Image.core)
|
||||||
|
|
||||||
|
|
||||||
|
@ -335,18 +341,6 @@ class TestFilePng(PillowTestCase):
|
||||||
im.load()
|
im.load()
|
||||||
self.assertRaises(RuntimeError, im.verify)
|
self.assertRaises(RuntimeError, im.verify)
|
||||||
|
|
||||||
def test_apng_load_verify(self):
|
|
||||||
# Check open/load/verify exception (@PIL150)
|
|
||||||
TEST_APNG_FILE = "Tests/images/iss634.apng"
|
|
||||||
im = Image.open(TEST_APNG_FILE)
|
|
||||||
|
|
||||||
# Assert that there is no unclosed file warning
|
|
||||||
self.assert_warning(None, im.verify)
|
|
||||||
|
|
||||||
im = Image.open(TEST_APNG_FILE)
|
|
||||||
im.load()
|
|
||||||
self.assertRaises(RuntimeError, im.verify)
|
|
||||||
|
|
||||||
def test_verify_struct_error(self):
|
def test_verify_struct_error(self):
|
||||||
# Check open/load/verify exception (#1755)
|
# Check open/load/verify exception (#1755)
|
||||||
|
|
||||||
|
@ -569,6 +563,13 @@ class TestFilePng(PillowTestCase):
|
||||||
chunks = PngImagePlugin.getchunks(im)
|
chunks = PngImagePlugin.getchunks(im)
|
||||||
self.assertEqual(len(chunks), 3)
|
self.assertEqual(len(chunks), 3)
|
||||||
|
|
||||||
|
@unittest.skipUnless(HAVE_WEBP and _webp.HAVE_WEBPANIM,
|
||||||
|
"WebP support not installed with animation")
|
||||||
|
def test_apng(self):
|
||||||
|
im = Image.open("Tests/images/iss634.apng")
|
||||||
|
expected = Image.open("Tests/images/iss634.webp")
|
||||||
|
self.assert_image_similar(im, expected, 0.23)
|
||||||
|
|
||||||
|
|
||||||
@unittest.skipIf(sys.platform.startswith('win32'), "requires Unix or macOS")
|
@unittest.skipIf(sys.platform.startswith('win32'), "requires Unix or macOS")
|
||||||
class TestTruncatedPngPLeaks(PillowLeakTestCase):
|
class TestTruncatedPngPLeaks(PillowLeakTestCase):
|
||||||
|
|
|
@ -526,6 +526,19 @@ class PngStream(ChunkStream):
|
||||||
|
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
# APNG chunks
|
||||||
|
def chunk_acTL(self, pos, length):
|
||||||
|
s = ImageFile._safe_read(self.fp, length)
|
||||||
|
return s
|
||||||
|
|
||||||
|
def chunk_fcTL(self, pos, length):
|
||||||
|
s = ImageFile._safe_read(self.fp, length)
|
||||||
|
return s
|
||||||
|
|
||||||
|
def chunk_fdAT(self, pos, length):
|
||||||
|
s = ImageFile._safe_read(self.fp, length)
|
||||||
|
return s
|
||||||
|
|
||||||
|
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
# PNG reader
|
# PNG reader
|
||||||
|
@ -871,3 +884,4 @@ Image.register_save(PngImageFile.format, _save)
|
||||||
Image.register_extensions(PngImageFile.format, [".png", ".apng"])
|
Image.register_extensions(PngImageFile.format, [".png", ".apng"])
|
||||||
|
|
||||||
Image.register_mime(PngImageFile.format, "image/png")
|
Image.register_mime(PngImageFile.format, "image/png")
|
||||||
|
Image.register_mime(PngImageFile.format, "image/apng")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user