mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
packbits isn't working correctly
This commit is contained in:
parent
d2f1fa0e5f
commit
a4a9b36ed0
|
@ -196,8 +196,13 @@ def test_blur():
|
|||
|
||||
|
||||
def test_packbits():
|
||||
#im.info['compression']='packbits'
|
||||
pass
|
||||
im = lena('RGB')
|
||||
out = tempfile('temp.tif')
|
||||
|
||||
im.save(out, compression='packbits')
|
||||
im2 = Image.open(out)
|
||||
assert_image_equal(im, im2)
|
||||
|
||||
|
||||
|
||||
def test_cmyk_save():
|
||||
|
|
Loading…
Reference in New Issue
Block a user