How can I resize image when I upload with ImageField by protecting aspect ratio of image.
Example: (Width x Height) from 1100x600 to 550x300
And, is it possible with [ImageKit] ? https://github.com/matthewwithanm/django-imagekit
How can I resize image when I upload with ImageField by protecting aspect ratio of image.
Example: (Width x Height) from 1100x600 to 550x300
And, is it possible with [ImageKit] ? https://github.com/matthewwithanm/django-imagekit
Copyright © 2021 Jogjafile Inc.
You can use easy-thumbnails package for optimizing images. Just follow these steps:
First install easy-thumbnails package using command:
Go to settings.py file and add easy_thumbnails to the INSTALLED_APPS setting as like:
Run this command to apply changes in database
Now go to your template and replace the line(as I supposed):
To the following lines: