Pillow/Tests/test_file_psd.py

85 lines
2.3 KiB
Python
Raw Normal View History

from .helper import hopper, PillowTestCase
2012-10-24 17:24:26 +04:00
2015-07-03 08:03:25 +03:00
from PIL import Image, PsdImagePlugin
2012-10-24 17:24:26 +04:00
2015-04-24 11:24:52 +03:00
test_file = "Tests/images/hopper.psd"
2012-10-24 17:24:26 +04:00
2014-06-10 13:10:47 +04:00
class TestImagePsd(PillowTestCase):
def test_sanity(self):
2015-04-24 11:24:52 +03:00
im = Image.open(test_file)
2014-06-10 13:10:47 +04:00
im.load()
self.assertEqual(im.mode, "RGB")
self.assertEqual(im.size, (128, 128))
self.assertEqual(im.format, "PSD")
2017-02-27 16:41:28 +03:00
im2 = hopper()
self.assert_image_similar(im, im2, 4.8)
2015-07-03 08:03:25 +03:00
def test_invalid_file(self):
2015-07-03 09:22:56 +03:00
invalid_file = "Tests/images/flower.jpg"
self.assertRaises(SyntaxError,
2017-09-01 14:05:40 +03:00
PsdImagePlugin.PsdImageFile, invalid_file)
2015-07-03 08:03:25 +03:00
2015-06-07 18:01:34 +03:00
def test_n_frames(self):
im = Image.open("Tests/images/hopper_merged.psd")
self.assertEqual(im.n_frames, 1)
2015-06-30 06:25:00 +03:00
self.assertFalse(im.is_animated)
2015-06-07 18:01:34 +03:00
im = Image.open(test_file)
self.assertEqual(im.n_frames, 2)
2015-06-30 06:25:00 +03:00
self.assertTrue(im.is_animated)
2015-06-07 18:01:34 +03:00
def test_eoferror(self):
im = Image.open(test_file)
2017-09-06 06:23:50 +03:00
# PSD seek index starts at 1 rather than 0
n_frames = im.n_frames+1
2017-09-06 06:23:50 +03:00
# Test seeking past the last frame
self.assertRaises(EOFError, im.seek, n_frames)
self.assertLess(im.tell(), n_frames)
# Test that seeking to the last frame does not raise an error
im.seek(n_frames-1)
2017-02-27 17:09:05 +03:00
def test_seek_tell(self):
im = Image.open(test_file)
layer_number = im.tell()
2017-09-06 06:23:50 +03:00
self.assertEqual(layer_number, 1)
2017-02-27 17:09:05 +03:00
2017-09-06 06:23:50 +03:00
self.assertRaises(EOFError, im.seek, 0)
2017-02-27 17:09:05 +03:00
im.seek(1)
layer_number = im.tell()
self.assertEqual(layer_number, 1)
im.seek(2)
layer_number = im.tell()
self.assertEqual(layer_number, 2)
def test_seek_eoferror(self):
im = Image.open(test_file)
2017-09-01 14:05:40 +03:00
self.assertRaises(EOFError, im.seek, -1)
2017-02-27 17:09:05 +03:00
def test_open_after_exclusive_load(self):
im = Image.open(test_file)
im.load()
im.seek(im.tell()+1)
im.load()
2017-02-27 18:21:27 +03:00
def test_icc_profile(self):
im = Image.open(test_file)
self.assertIn("icc_profile", im.info)
icc_profile = im.info["icc_profile"]
self.assertEqual(len(icc_profile), 3144)
def test_no_icc_profile(self):
im = Image.open("Tests/images/hopper_merged.psd")
self.assertNotIn("icc_profile", im.info)