Disable fastpath when using center or translate

This commit is contained in:
wiredfool 2017-01-01 11:11:10 +00:00
parent f286d8bb34
commit fed4b52171

View File

@ -1582,7 +1582,9 @@ class Image(object):
angle = angle % 360.0 angle = angle % 360.0
# Fast paths regardless of filter # Fast paths regardless of filter, as long as we're not
# translating or changing the center.
if not (center or translate):
if angle == 0: if angle == 0:
return self.copy() return self.copy()
if angle == 180: if angle == 180: