2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2022-10-03 11:54:37 +03:00
|
|
|
from PIL import Image
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
|
2024-01-27 07:19:43 +03:00
|
|
|
def test_sanity() -> None:
|
2019-11-04 01:18:55 +03:00
|
|
|
# Make sure we have the binary extension
|
2022-10-03 11:54:37 +03:00
|
|
|
Image.core.new("L", (100, 100))
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
# Create an image and do stuff with it.
|
2022-10-03 11:54:37 +03:00
|
|
|
im = Image.new("1", (100, 100))
|
2019-11-04 01:18:55 +03:00
|
|
|
assert (im.mode, im.size) == ("1", (100, 100))
|
|
|
|
assert len(im.tobytes()) == 1300
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2019-11-04 01:18:55 +03:00
|
|
|
# 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))
|