Pillow/Tests/test_file_fli.py
2015-06-08 01:02:43 +10:00

30 lines
677 B
Python

from helper import unittest, PillowTestCase
from PIL import Image
# sample ppm stream
# created as an export of a palette image from Gimp2.6
# save as...-> hopper.fli, default options.
test_file = "Tests/images/hopper.fli"
data = open(test_file, "rb").read()
class TestFileFli(PillowTestCase):
def test_sanity(self):
im = Image.open(test_file)
im.load()
self.assertEqual(im.mode, "P")
self.assertEqual(im.size, (128, 128))
self.assertEqual(im.format, "FLI")
def test_n_frames(self):
im = Image.open(test_file)
self.assertEqual(im.n_frames, 2)
if __name__ == '__main__':
unittest.main()
# End of file