Paint / app.py
Felguk's picture
Update app.py
73cb336 verified
raw
history blame contribute delete
318 Bytes
import gradio as gr
def paint_canvas(image):
return image
iface = gr.Interface(
fn=paint_canvas,
inputs="sketchpad",
outputs="image",
live=True,
title="Paint Canvas",
description="Draw something on the canvas and see it displayed below!",
theme="Felguk/Felguk_theme"
)
iface.launch()