This commit is contained in:
Kentai Radiquum 2025-05-05 03:19:56 +05:00
parent 3ef10c07cf
commit c74170a14d
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 20 additions and 8 deletions

View file

@ -8,6 +8,7 @@ from PIL import Image
from io import BytesIO
import base64
@api.route("/new", methods=["POST"])
def APIPackNew():
pack = {
@ -54,7 +55,9 @@ def APIPackImageEdit(id):
if image_mime == None or image_mime not in IMG_ALLOWED_MIME:
return jsonify({"status": "error", "message": "wrong image format"})
image_data = base64.b64decode(re.sub("^data:image/.+;base64,", "", request.json.get("image")))
image_data = base64.b64decode(
re.sub("^data:image/.+;base64,", "", request.json.get("image"))
)
image = Image.open(BytesIO(image_data))
image = image.resize((512, 512), Image.Resampling.LANCZOS)