我有一个缩略图过滤器,当图像高于它的宽度时,它总是将图像向左旋转 90 度(我已经检查过,原始图像是直的,而缓存的图像是旋转的)。相关代码如下所示:
profile_image = models.ImageField(upload_to='profile_images', default='profile_images/icon.png')
profile_icon = ImageSpecField(source='profile_image',
processors=[processors.Thumbnail(width=72, height=72, crop=True)],
format='JPEG',
options={'quality': 60})
如何停止自动旋转?