save as png

This commit is contained in:
Jonas Konschak 2022-07-15 01:24:04 +02:00 committed by GitHub
parent 71fb0c29bc
commit 1ab70c790b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,9 +27,9 @@ def ascii_from_image(image: Image.Image, size: int = 128) -> str:
def save_image(image: Image.Image, path: str): def save_image(image: Image.Image, path: str):
if os.path.isdir(path): if os.path.isdir(path):
path = os.path.join(path, 'generated.jpg') path = os.path.join(path, 'generated.png')
elif not path.endswith('.jpg'): elif not path.endswith('.png'):
path += '.jpg' path += '.png'
print("saving image to", path) print("saving image to", path)
image.save(path) image.save(path)
return image return image