diff --git a/mayan/apps/converter/classes.py b/mayan/apps/converter/classes.py index 4a3cf10717..54f759c78c 100644 --- a/mayan/apps/converter/classes.py +++ b/mayan/apps/converter/classes.py @@ -247,7 +247,7 @@ class TransformationRotate(BaseTransformation): def execute_on(self, *args, **kwargs): super(TransformationRotate, self).execute_on(*args, **kwargs) - return self.image.rotate(360 - self.degrees) + return self.image.rotate(360 - self.degrees, resample=Image.BICUBIC, expand=True) class TransformationZoom(BaseTransformation):