Compare commits

..

No commits in common. "a4c54b9b03b2db979d62dcd26832f850df989e64" and "d0ae8330563d0133be0638a2a5aac3dd7af701fd" have entirely different histories.

2 changed files with 8 additions and 1 deletions

View File

@ -36,6 +36,12 @@ def settings() -> rx.Component:
width="120%",
max_width = "120%",
multiple=True,
#accept={
# "image/png": [".png"],
# "image/jpeg": [".jpg", ".jpeg"],
# "image/webp": [".webp"],
# "image/tiff": [".tif", ".tiff"],
#},
margin_top="50px",
style={"align-self": "center"},
spacing="2em",
@ -103,4 +109,4 @@ def settings() -> rx.Component:
columns=[1],
spacing="5px",
),
)
)

View File

@ -1,6 +1,7 @@
import logging
import os
from typing import List
from PIL import Image, ImageDraw, ImageFont, ImageFilter
from PIL.Image import composite