mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-05 07:44: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 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(
|
||||||
|
|
Loading…
Add table
Reference in a new issue