summaryrefslogtreecommitdiff
path: root/app/photos/utils.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
committerluxagraf <sng@luxagraf.net>2020-12-02 15:02:12 -0500
commitab8055b5cab2523d925f59c65bc38df103a26991 (patch)
tree29e4597bc0d86d658f574c0c4f0b036351a68742 /app/photos/utils.py
parent87f692178a6e30719c564076f00c206642f36ce6 (diff)
deleted old apps and media
Diffstat (limited to 'app/photos/utils.py')
-rw-r--r--app/photos/utils.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/app/photos/utils.py b/app/photos/utils.py
deleted file mode 100644
index 84e72f5..0000000
--- a/app/photos/utils.py
+++ /dev/null
@@ -1,28 +0,0 @@
-import os
-import re
-import subprocess
-
-from django.apps import apps
-from django.conf import settings
-
-from PIL import ImageFile
-from bs4 import BeautifulSoup
-# pip install python-resize-image
-from resizeimage import resizeimage
-
-
-def resize_image(img, width=None, height=None, quality=72, base_path="", filename=""):
- if width and height:
- newimg = resizeimage.resize_cover(img, [width, height])
- if width and not height:
- newimg = resizeimage.resize_width(img, width)
- if height and not width:
- newimg = resizeimage.resize_height(img, height)
- if not os.path.isdir(base_path):
- os.makedirs(base_path)
- path = "%s%s" % (base_path, filename)
- ImageFile.MAXBLOCK = img.size[0] * img.size[1] * 4
- newimg.save(path, newimg.format, quality=quality)
- subprocess.call(["jpegoptim", "%s" % path])
-
-