2014-07-07 21:03:50 +04:00
|
|
|
from helper import unittest, 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
|
|
|
|
|
|
|
# sample ppm stream
|
2015-04-24 11:24:52 +03:00
|
|
|
test_file = "Tests/images/hopper.psd"
|
|
|
|
data = open(test_file, "rb").read()
|
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")
|
|
|
|
|
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,
|
|
|
|
lambda: 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
|
|
|
|
2015-06-18 17:49:18 +03:00
|
|
|
def test_eoferror(self):
|
|
|
|
im = Image.open(test_file)
|
|
|
|
|
|
|
|
n_frames = im.n_frames
|
|
|
|
while True:
|
|
|
|
n_frames -= 1
|
|
|
|
try:
|
|
|
|
# PSD seek index starts at 1 rather than 0
|
|
|
|
im.seek(n_frames+1)
|
|
|
|
break
|
|
|
|
except EOFError:
|
|
|
|
self.assertTrue(im.tell() < n_frames)
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|