我有一个缩略图过滤器,当图像高于宽度时,总是最终将图像向左旋转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})
Run Code Online (Sandbox Code Playgroud)
如何停止自动旋转?