implement word list and image gen

This commit is contained in:
2024-12-13 13:11:48 -06:00
commit 2f8f3415fc
11 changed files with 13012 additions and 0 deletions

6
tests/image_gen_test.py Normal file
View File

@@ -0,0 +1,6 @@
from src.image_gen import image_style, Styles, icon_gen
from pathlib import Path
if __name__ == "__main__":
dog_emoji = image_style("dog in a hat on a beach with a drink", style=Styles.cartoon)
icon_gen(dog_emoji, output=Path("../output"), quality="hd")