Fredrik Lundh is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againpil-2009-raclette / Tests / test_mode_i16.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | from tester import *
from PIL import Image
def verify(im1):
im2 = lena("I")
assert_equal(im1.size, im2.size)
pix1 = im1.load()
pix2 = im2.load()
for y in range(im1.size[1]):
for x in range(im1.size[0]):
xy = x, y
if pix1[xy] != pix2[xy]:
failure(
"got %r from mode %s at %s, expected %r" %
(pix1[xy], im1.mode, xy, pix2[xy])
)
return
success()
def test_basic():
# PIL 1.1 has limited support for 16-bit image data. Check that
# create/copy/transform and save works as expected.
def basic(mode):
imIn = lena("I").convert(mode)
verify(imIn)
w, h = imIn.size
imOut = imIn.copy()
verify(imOut) # copy
imOut = imIn.transform((w, h), Image.EXTENT, (0, 0, w, h))
verify(imOut) # transform
filename = tempfile("temp.im")
imIn.save(filename)
imOut = Image.open(filename)
verify(imIn)
verify(imOut)
imOut = imIn.crop((0, 0, w, h))
verify(imOut)
imOut = Image.new(mode, (w, h), None)
imOut.paste(imIn.crop((0, 0, w/2, h)), (0, 0))
imOut.paste(imIn.crop((w/2, 0, w, h)), (w/2, 0))
verify(imIn)
verify(imOut)
imIn = Image.new(mode, (1, 1), 1)
assert_equal(imIn.getpixel((0, 0)), 1)
imIn.putpixel((0, 0), 2)
assert_equal(imIn.getpixel((0, 0)), 2)
if mode == "L":
max = 255
else:
max = 32767
imIn = Image.new(mode, (1, 1), 256)
assert_equal(imIn.getpixel((0, 0)), min(256, max))
imIn.putpixel((0, 0), 512)
assert_equal(imIn.getpixel((0, 0)), min(512, max))
basic("L")
basic("I;16")
basic("I;16B")
basic("I;16L")
basic("I")
def test_tostring():
def tostring(mode):
return Image.new(mode, (1, 1), 1).tostring()
assert_equal(tostring("L"), "\x01")
assert_equal(tostring("I;16"), "\x01\x00")
assert_equal(tostring("I;16B"), "\x00\x01")
assert_equal(tostring("I"), "\x01\x00\x00\x00")
def test_convert():
im = lena("I")
verify(im.convert("I;16"))
verify(im.convert("I;16").convert("L"))
verify(im.convert("I;16").convert("I"))
verify(im.convert("I;16B"))
verify(im.convert("I;16B").convert("L"))
verify(im.convert("I;16B").convert("I"))
|