File size: 210 Bytes
a6a908a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import cairosvg
import gradio as gr

def show(url):
    cairosvg.svg2png(url=url, write_to=f"./test.png")

with gr.Blocks() as bl:
    img = gr.Image(type='pil')
    img.upload(fn=show, inputs=img)

bl.launch()