2014-07-07 21:03:50 +04:00
|
|
|
from helper import unittest, PillowTestCase
|
2012-10-24 17:25:00 +04:00
|
|
|
|
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
# sample ppm stream
|
2014-09-29 21:40:33 +04:00
|
|
|
# created as an export of a palette image from Gimp2.6
|
|
|
|
# save as...-> hopper.fli, default options.
|
|
|
|
file = "Tests/images/hopper.fli"
|
2012-10-24 17:25:00 +04:00
|
|
|
data = open(file, "rb").read()
|
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
class TestFileFli(PillowTestCase):
|
|
|
|
|
|
|
|
def test_sanity(self):
|
|
|
|
im = Image.open(file)
|
|
|
|
im.load()
|
|
|
|
self.assertEqual(im.mode, "P")
|
|
|
|
self.assertEqual(im.size, (128, 128))
|
|
|
|
self.assertEqual(im.format, "FLI")
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|
|
|
|
|
|
|
|
# End of file
|