fix/admin: wrong orientation when image is uploaded

This commit is contained in:
Kentai Radiquum 2025-02-21 19:55:30 +05:00
parent 50a473d417
commit 842fb41879
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -1,6 +1,7 @@
import json import json
import PIL import PIL
import PIL.Image import PIL.Image
import PIL.ImageOps
import boto3.session import boto3.session
from flask import Flask, render_template, request, Response, redirect, url_for from flask import Flask, render_template, request, Response, redirect, url_for
from werkzeug.utils import secure_filename from werkzeug.utils import secure_filename
@ -184,6 +185,8 @@ def ApiUpload():
file_ext = filename.split(".")[-1] file_ext = filename.split(".")[-1]
Image = PIL.Image.open(os.path.join(app.config["UPLOAD_FOLDER"], filename)) Image = PIL.Image.open(os.path.join(app.config["UPLOAD_FOLDER"], filename))
PIL.ImageOps.exif_transpose(Image, in_place=True)
try: try:
db.collection(os.getenv("PREFIX")).add( db.collection(os.getenv("PREFIX")).add(
{ {
@ -227,6 +230,7 @@ def ApiUpload():
for size in SIZES: for size in SIZES:
Image = PIL.Image.open(os.path.join(app.config["UPLOAD_FOLDER"], filename)) Image = PIL.Image.open(os.path.join(app.config["UPLOAD_FOLDER"], filename))
PIL.ImageOps.exif_transpose(Image, in_place=True)
Image.thumbnail(size, PIL.Image.Resampling.LANCZOS) Image.thumbnail(size, PIL.Image.Resampling.LANCZOS)
Image.save( Image.save(
os.path.join( os.path.join(