mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-14 05:36:48 +03:00
Do not import PIL.Image
This commit is contained in:
parent
fea604f693
commit
92cb0af71f
|
@ -1,19 +1,18 @@
|
||||||
import PIL
|
from PIL import Image
|
||||||
import PIL.Image
|
|
||||||
|
|
||||||
|
|
||||||
def test_sanity():
|
def test_sanity():
|
||||||
# Make sure we have the binary extension
|
# 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.
|
# 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 (im.mode, im.size) == ("1", (100, 100))
|
||||||
assert len(im.tobytes()) == 1300
|
assert len(im.tobytes()) == 1300
|
||||||
|
|
||||||
# Create images in all remaining major modes.
|
# Create images in all remaining major modes.
|
||||||
PIL.Image.new("L", (100, 100))
|
Image.new("L", (100, 100))
|
||||||
PIL.Image.new("P", (100, 100))
|
Image.new("P", (100, 100))
|
||||||
PIL.Image.new("RGB", (100, 100))
|
Image.new("RGB", (100, 100))
|
||||||
PIL.Image.new("I", (100, 100))
|
Image.new("I", (100, 100))
|
||||||
PIL.Image.new("F", (100, 100))
|
Image.new("F", (100, 100))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user