misskey2telegram/defs/image.py

12 lines
252 B
Python
Raw Normal View History

2023-07-21 06:40:07 +00:00
from io import BytesIO
from PIL import Image
def webp_to_png(content: bytes) -> BytesIO:
"""Convert a WebP image to a PNG image."""
im = Image.open(BytesIO(content))
jpg = BytesIO()
im.save(jpg, "JPEG")
jpg.seek(0)
return jpg