이미지의 너비가 너비보다 클 때 항상 이미지를 왼쪽으로 90도 회전시키는 썸네일 필터가 있습니다. 캐시 된 이미지가 회전되는 동안 원본 이미지는 직선입니다.) 관련 코드는 다음과 같습니다.Django-imagekit에서 이미지의 자동 회전 멈춤 Thumbnail
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})
자동 회전을 어떻게 중지합니까?
[imagekit documentation] (https://django-imagekit.readthedocs.io/ko/latest/) – brennan