Pillow/Tests/test_000_sanity.py

19 lines
501 B
Python
Raw Normal View History

2022-10-03 11:54:37 +03:00
from PIL import Image
def test_sanity():
# Make sure we have the binary extension
2022-10-03 11:54:37 +03:00
Image.core.new("L", (100, 100))
# Create an image and do stuff with it.
2022-10-03 11:54:37 +03:00
im = Image.new("1", (100, 100))
assert (im.mode, im.size) == ("1", (100, 100))
assert len(im.tobytes()) == 1300
# Create images in all remaining major modes.
2022-10-03 11:54:37 +03:00
Image.new("L", (100, 100))
Image.new("P", (100, 100))
Image.new("RGB", (100, 100))
Image.new("I", (100, 100))
Image.new("F", (100, 100))