From 6f2f28a3a752cc47d9dc96bda862ed67cd75c9af Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 1 Dec 2022 18:46:49 -0700 Subject: Image attachment uploads --- core/files.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 core/files.py (limited to 'core') diff --git a/core/files.py b/core/files.py new file mode 100644 index 0000000..c4f4355 --- /dev/null +++ b/core/files.py @@ -0,0 +1,24 @@ +import io + +import blurhash +from django.core.files import File +from PIL import Image, ImageOps + + +def resize_image(image: File, *, size: tuple[int, int]) -> File: + """ + Resizes an image to fit insize the given size (cropping one dimension + to fit if needed) + """ + with Image.open(image) as img: + resized_image = ImageOps.fit(img, size) + new_image_bytes = io.BytesIO() + resized_image.save(new_image_bytes, format=img.format) + return File(new_image_bytes) + + +def blurhash_image(image) -> str: + """ + Returns the blurhash for an image + """ + return blurhash.encode(image, 4, 4) -- cgit v1.2.3