Pillow/Tests/test_image_getbbox.py

39 lines
831 B
Python
Raw Normal View History

from PIL import Image
from .helper import hopper
def test_sanity():
bbox = hopper().getbbox()
assert isinstance(bbox, tuple)
def test_bbox():
# 8-bit mode
im = Image.new("L", (100, 100), 0)
assert im.getbbox() is None
im.paste(255, (10, 25, 90, 75))
assert im.getbbox() == (10, 25, 90, 75)
im.paste(255, (25, 10, 75, 90))
assert im.getbbox() == (10, 10, 90, 90)
im.paste(255, (-10, -10, 110, 110))
assert im.getbbox() == (0, 0, 100, 100)
# 32-bit mode
im = Image.new("RGB", (100, 100), 0)
assert im.getbbox() is None
2014-06-10 13:10:47 +04:00
im.paste(255, (10, 25, 90, 75))
assert im.getbbox() == (10, 25, 90, 75)
2014-06-10 13:10:47 +04:00
im.paste(255, (25, 10, 75, 90))
assert im.getbbox() == (10, 10, 90, 90)
im.paste(255, (-10, -10, 110, 110))
assert im.getbbox() == (0, 0, 100, 100)