mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
16 lines
442 B
Python
16 lines
442 B
Python
|
from tester import *
|
||
|
|
||
|
from PIL import Image
|
||
|
|
||
|
def test_rotate():
|
||
|
def rotate(mode):
|
||
|
im = lena(mode)
|
||
|
out = im.rotate(45)
|
||
|
assert_equal(out.mode, mode)
|
||
|
assert_equal(out.size, im.size) # default rotate clips output
|
||
|
out = im.rotate(45, expand=1)
|
||
|
assert_equal(out.mode, mode)
|
||
|
assert_true(out.size != im.size)
|
||
|
for mode in "1", "P", "L", "RGB", "I", "F":
|
||
|
yield_test(rotate, mode)
|