Merge pull request #3253 from radarhere/convert

Added test for converting GIF with RGBA palette to P
This commit is contained in:
Hugo 2018-07-14 14:40:26 +03:00 committed by GitHub
commit aac02f73ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -136,6 +136,17 @@ class TestImageConvert(PillowTestCase):
self.assertNotIn('transparency', im_p.info)
im_p.save(f)
def test_gif_with_rgba_palette_to_p(self):
# See https://github.com/python-pillow/Pillow/issues/2433
im = Image.open('Tests/images/hopper.gif')
im.info['transparency'] = 255
im.load()
self.assertEqual(im.palette.mode, 'RGBA')
im_p = im.convert('P')
# Should not raise ValueError: unrecognized raw mode
im_p.load()
def test_p_la(self):
im = hopper('RGBA')
alpha = hopper('L')