mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
23 lines
452 B
Python
23 lines
452 B
Python
# Demo: (Image) -> (Image)
|
|
|
|
import gradio as gr
|
|
|
|
|
|
def image_mod(image):
|
|
return image.rotate(45)
|
|
|
|
|
|
io = gr.Interface(image_mod,
|
|
gr.inputs.Image(type="pil"),
|
|
gr.outputs.Image(type="pil"),
|
|
examples=[
|
|
["images/cheetah1.jpg"],
|
|
["images/cheetah2.jpg"],
|
|
["images/lion.jpg"],
|
|
],
|
|
live=True,
|
|
)
|
|
|
|
io.test_launch()
|
|
io.launch()
|