transpose exif
This commit is contained in:
parent
32a274f800
commit
9ea814be78
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
from typing import Tuple
|
from typing import Tuple
|
||||||
from PIL import Image
|
from PIL import Image, ImageOps
|
||||||
from pillow_heif import HeifImagePlugin
|
from pillow_heif import HeifImagePlugin
|
||||||
from typing import Type
|
from typing import Type
|
||||||
|
|
||||||
|
@ -160,6 +160,7 @@ class HateHeifBot(Plugin):
|
||||||
# de-heif via pillow
|
# de-heif via pillow
|
||||||
img_in = Image.open(BytesIO(data))
|
img_in = Image.open(BytesIO(data))
|
||||||
self.log.debug(f"Received image parameters: {img_in.format} {img_in.size} {img_in.mode}")
|
self.log.debug(f"Received image parameters: {img_in.format} {img_in.size} {img_in.mode}")
|
||||||
|
ImageOps.exif_transpose(img_in, in_place=True)
|
||||||
with BytesIO() as img_out:
|
with BytesIO() as img_out:
|
||||||
img_in.save(img_out, format="JPEG")
|
img_in.save(img_out, format="JPEG")
|
||||||
img = img_out.getvalue()
|
img = img_out.getvalue()
|
||||||
|
|
Loading…
Add table
Reference in a new issue