Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
tonyassi/image-editor-example
MadeWithAI
/
MWAI-image-editor-example
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
50f94d2
MWAI-image-editor-example
/
app.py
tonyassi
Create app.py
dd97663
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
214 Bytes
import
gradio
as
gr
def
greet
(
img_editor
):
return
img_editor[
'composite'
]
iface = gr.Interface(fn=greet,
inputs=gr.ImageEditor(),
outputs=gr.Image())
iface.launch()