2012-10-15 09:55:39 +04:00
|
|
|
from __future__ import print_function
|
|
|
|
from tester import *
|
|
|
|
|
2012-10-16 00:26:38 +04:00
|
|
|
import PIL
|
|
|
|
import PIL.Image
|
|
|
|
|
|
|
|
# Make sure we have the binary extension
|
|
|
|
im = PIL.Image.core.new("L", (100, 100))
|
|
|
|
|
|
|
|
assert PIL.Image.VERSION[:3] == '1.1'
|
|
|
|
|
|
|
|
# Create an image and do stuff with it.
|
|
|
|
im = PIL.Image.new("1", (100, 100))
|
|
|
|
assert (im.mode, im.size) == ('1', (100, 100))
|
2013-02-26 14:28:34 +04:00
|
|
|
assert len(im.tobytes()) == 1300
|
2012-10-16 00:26:38 +04:00
|
|
|
|
|
|
|
# Create images in all remaining major modes.
|
|
|
|
im = PIL.Image.new("L", (100, 100))
|
|
|
|
im = PIL.Image.new("P", (100, 100))
|
|
|
|
im = PIL.Image.new("RGB", (100, 100))
|
|
|
|
im = PIL.Image.new("I", (100, 100))
|
|
|
|
im = PIL.Image.new("F", (100, 100))
|
|
|
|
|
|
|
|
print("ok")
|