Skip to content

Commit

Permalink
Merge pull request #6635 from radarhere/pilimage_import
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Oct 3, 2022
2 parents fea604f + 92cb0af commit 285f9cb
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions Tests/test_000_sanity.py
@@ -1,19 +1,18 @@
import PIL
import PIL.Image
from PIL import Image


def test_sanity():
# Make sure we have the binary extension
PIL.Image.core.new("L", (100, 100))
Image.core.new("L", (100, 100))

# Create an image and do stuff with it.
im = PIL.Image.new("1", (100, 100))
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.
PIL.Image.new("L", (100, 100))
PIL.Image.new("P", (100, 100))
PIL.Image.new("RGB", (100, 100))
PIL.Image.new("I", (100, 100))
PIL.Image.new("F", (100, 100))
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))

0 comments on commit 285f9cb

Please sign in to comment.