mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-04 23:34:31 +00:00
fix/admin: wrong orientation when image is uploaded
This commit is contained in:
parent
50a473d417
commit
842fb41879
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
import json
|
||||
import PIL
|
||||
import PIL.Image
|
||||
import PIL.ImageOps
|
||||
import boto3.session
|
||||
from flask import Flask, render_template, request, Response, redirect, url_for
|
||||
from werkzeug.utils import secure_filename
|
||||
|
@ -184,6 +185,8 @@ def ApiUpload():
|
|||
file_ext = filename.split(".")[-1]
|
||||
|
||||
Image = PIL.Image.open(os.path.join(app.config["UPLOAD_FOLDER"], filename))
|
||||
PIL.ImageOps.exif_transpose(Image, in_place=True)
|
||||
|
||||
try:
|
||||
db.collection(os.getenv("PREFIX")).add(
|
||||
{
|
||||
|
@ -227,6 +230,7 @@ def ApiUpload():
|
|||
|
||||
for size in SIZES:
|
||||
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.save(
|
||||
os.path.join(
|
||||
|
|
Loading…
Add table
Reference in a new issue