mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 09:56:17 +03:00
Split test for fill and no fill
Added a simpler image to compare
This commit is contained in:
parent
8af7c679ab
commit
975b7fced5
|
@ -97,10 +97,17 @@ class TestImageRotate(PillowTestCase):
|
|||
self.rotate(im, im.mode, 45, translate=(im.size[0]/2, 0))
|
||||
self.rotate(im, im.mode, 45, center=(0, 0), translate=(im.size[0]/2, 0))
|
||||
|
||||
def test_rotate_no_fill(self):
|
||||
im = Image.new('RGB', (100, 100), 'green')
|
||||
target = Image.open('Tests/images/rotate_45_no_fill.png')
|
||||
im = im.rotate(45)
|
||||
self.assert_image_equal(im, target)
|
||||
|
||||
def test_rotate_with_fill(self):
|
||||
im = hopper()
|
||||
target = Image.open('Tests/images/hopper45withfill.png')
|
||||
self.assert_image_similar(im.rotate(45, fillcolor='white'), target, 1)
|
||||
im = Image.new('RGB', (100, 100), 'green')
|
||||
target = Image.open('Tests/images/rotate_45_with_fill.png')
|
||||
im = im.rotate(45, fillcolor='white')
|
||||
self.assert_image_equal(im, target)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in New Issue
Block a user