mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-06 06:03:14 +03:00
Added .pnm test
This commit is contained in:
parent
8f34621c14
commit
873603701f
BIN
Tests/images/hopper.pnm
Normal file
BIN
Tests/images/hopper.pnm
Normal file
Binary file not shown.
|
@ -1,4 +1,4 @@
|
||||||
from .helper import PillowTestCase
|
from .helper import PillowTestCase, hopper
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
@ -34,6 +34,16 @@ class TestFilePpm(PillowTestCase):
|
||||||
reloaded = Image.open(f)
|
reloaded = Image.open(f)
|
||||||
self.assert_image_equal(im, reloaded)
|
self.assert_image_equal(im, reloaded)
|
||||||
|
|
||||||
|
def test_pnm(self):
|
||||||
|
im = Image.open('Tests/images/hopper.pnm')
|
||||||
|
self.assert_image_similar(im, hopper(), 0.0001)
|
||||||
|
|
||||||
|
f = self.tempfile('temp.pnm')
|
||||||
|
im.save(f)
|
||||||
|
|
||||||
|
reloaded = Image.open(f)
|
||||||
|
self.assert_image_equal(im, reloaded)
|
||||||
|
|
||||||
def test_truncated_file(self):
|
def test_truncated_file(self):
|
||||||
path = self.tempfile('temp.pgm')
|
path = self.tempfile('temp.pgm')
|
||||||
with open(path, 'w') as f:
|
with open(path, 'w') as f:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user