Spaces:
Sleeping
Sleeping
import gradio as gr | |
def image_mod(image): | |
print(image) | |
return f"<img src='file={image}'>" | |
with gr.Blocks() as demo: | |
img = gr.Image(type='filepath') | |
with gr.Row(): | |
htm1 = gr.HTML() | |
gr.Button().click(image_mod,img, [htm1]) | |
demo.launch() |