mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
14 lines
261 B
Python
14 lines
261 B
Python
import gradio as gr
|
|
|
|
|
|
def image_mod(image):
|
|
if image is None:
|
|
return "images/lion.jpg"
|
|
return image.rotate(45)
|
|
|
|
|
|
iface = gr.Interface(image_mod, gr.inputs.Image(type="pil", optional=True), "image")
|
|
|
|
if __name__ == "__main__":
|
|
iface.launch()
|