Test ImageDraw's bitmap()

This commit is contained in:
hugovk 2014-05-13 14:43:48 +03:00
parent 5b55cb72d3
commit 60b2570133
2 changed files with 14 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -71,6 +71,20 @@ def test_arc2():
helper_arc(bbox2) helper_arc(bbox2)
def test_bitmap():
# Arrange
small = Image.open("Tests/images/pil123rgba.png").resize((50, 50))
im = Image.new("RGB", (w, h))
draw = ImageDraw.Draw(im)
# Act
draw.bitmap((10, 10), small)
del draw
# Assert
assert_image_equal(im, Image.open("Tests/images/imagedraw_bitmap.png"))
def helper_chord(bbox): def helper_chord(bbox):
# Arrange # Arrange
im = Image.new("RGB", (w, h)) im = Image.new("RGB", (w, h))