You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @ajit-hi
Have you tried trying to resize it directly using PIL? Which version of PIL is installed? Maybe try to update this one first. Also tell us which version of django-image-cropping and easy_thumbnails you are using
Hello
I m using django-image-cropping with this config
In models.py
first_banner_image_cropped = ImageRatioField('first_banner_image', '976x535', allow_fullsize=True)
in Admin.py
class HomePageExtensionAdmin(FrontendEditableAdminMixin,ImageCroppingMixin, PageExtensionAdmin): . . . admin.site.register(HomePageExtension, HomePageExtensionAdmin)
settings.py
THUMBNAIL_PROCESSORS = ( 'easy_thumbnails.processors.colorspace', 'easy_thumbnails.processors.autocrop', 'filer.thumbnail_processors.scale_and_crop_with_subject_location', 'easy_thumbnails.processors.filters', 'image_cropping.thumbnail_processors.crop_corners', ) + thumbnail_settings.THUMBNAIL_PROCESSORS
but when I m selecting an image of size 6000x4000 , the resulting cropped image comes black.
Why is this issue coming is this a configuration issue or library issue.
The text was updated successfully, but these errors were encountered: