save as png

main
Jonas Konschak 2 years ago committed by GitHub
parent 71fb0c29bc
commit 1ab70c790b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      image_from_text.py

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

Loading…
Cancel
Save