Resize and crop an image to fit the specified size.
Project description
Resize and Crop
Description
Resize and crop an image to fit the specified size.
Installation
pip install resize-and-crop
or
pipenv install resize-and-crop
Methods
- resize_and_crop(path, size, crop_origin) - Resize the image located at path, into the size specified, cropping the image starting at the crop_origin.
- resized_image_file(image_field, format, dimensions, crop_origin) - Returns a new image file that has the resized image. Can be used to save to a Django ImageField.
Usage
from resize_and_crop import resize_and_crop
image = resize_and_crop("/path/to/image", (200,200), "middle")
from django.db import models
from resize_and_crop.utils import resized_image_file
class ExampleModel(models.Model):
image = models.ImageField(upload_to="images/")
thumbnail = models.ImageField(upload_to="thumbnails/")
def save(self, *args, **kwargs):
if self.image and not self.thumbnail:
self.thumbnail = resized_image_file(
self.image,
"jpeg",
(200, 200),
)
return super().save(*args, **kwargs)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
resize_and_crop-0.1.1.tar.gz
(6.8 kB
view hashes)
Built Distribution
Close
Hashes for resize_and_crop-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1f29aa8a8e3c600a4fa6049d9270d0c9362dc931f0805875d1137f448073094 |
|
MD5 | 8a59b06ca9393df1cd53051ad631580a |
|
BLAKE2b-256 | 75863a32a1d82df507b4f9357fc46bd4eb87b17f8b0c50e54ce12bbbd77365b9 |