Pillow/Tests/test_file_bmp.py

57 lines
1.3 KiB
Python
Raw Normal View History

2014-09-05 13:36:24 +04:00
from helper import unittest, PillowTestCase, hopper
from PIL import Image
2014-01-23 08:40:37 +04:00
import io
2014-06-10 13:10:47 +04:00
class TestFileBmp(PillowTestCase):
2014-06-10 13:10:47 +04:00
def roundtrip(self, im):
outfile = self.tempfile("temp.bmp")
2014-06-10 13:10:47 +04:00
im.save(outfile, 'BMP')
2014-06-10 13:10:47 +04:00
reloaded = Image.open(outfile)
reloaded.load()
self.assertEqual(im.mode, reloaded.mode)
self.assertEqual(im.size, reloaded.size)
self.assertEqual(reloaded.format, "BMP")
2014-06-10 13:10:47 +04:00
def test_sanity(self):
2014-09-05 13:36:24 +04:00
self.roundtrip(hopper())
2014-09-05 13:36:24 +04:00
self.roundtrip(hopper("1"))
self.roundtrip(hopper("L"))
self.roundtrip(hopper("P"))
self.roundtrip(hopper("RGB"))
2014-01-23 08:40:37 +04:00
2014-06-10 13:10:47 +04:00
def test_save_to_bytes(self):
output = io.BytesIO()
2014-09-05 13:36:24 +04:00
im = hopper()
2014-06-10 13:10:47 +04:00
im.save(output, "BMP")
output.seek(0)
reloaded = Image.open(output)
self.assertEqual(im.mode, reloaded.mode)
self.assertEqual(im.size, reloaded.size)
self.assertEqual(reloaded.format, "BMP")
2014-06-29 01:22:52 +04:00
def test_dpi(self):
dpi = (72, 72)
output = io.BytesIO()
2014-09-05 13:36:24 +04:00
im = hopper()
2014-06-29 01:22:52 +04:00
im.save(output, "BMP", dpi=dpi)
output.seek(0)
reloaded = Image.open(output)
self.assertEqual(reloaded.info["dpi"], dpi)
2014-06-10 13:10:47 +04:00
if __name__ == '__main__':
unittest.main()
# End of file