Rotate with fill color unit test

check if hopper image equals hopper45withfill after rotate
This commit is contained in:
storesource 2018-03-27 18:41:49 +05:30 committed by GitHub
parent a42beccee7
commit bea25dba30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,6 +97,11 @@ 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_with_fill(self):
im = hopper()
target = Image.open('Tests/images/hopper45withfill.png')
self.assert_image_equal(im.rotate(45, fillcolor='white'), target)
if __name__ == '__main__':
unittest.main()