Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| with gr.Blocks() as demo: | |
| with gr.Row(): | |
| with gr.Column(): | |
| image = gr.ImageEditor(label="Default Canvas. Not fixed", elem_id="default") | |
| get_image = gr.Button("Get Default") | |
| with gr.Column(): | |
| custom_canvas = gr.ImageEditor(label="Custom Canvas, not fixed", canvas_size=(300, 300), | |
| elem_id="small") | |
| get_small = gr.Button("Get Small") | |
| with gr.Column(): | |
| custom_canvas_fixed = gr.ImageEditor(label="Custom Canvas,fixed", canvas_size=(500, 500), fixed_canvas=True, | |
| elem_id="fixed") | |
| get_fixed = gr.Button("Get Fixed") | |
| with gr.Column(): | |
| width = gr.Number(label="Width") | |
| height = gr.Number(label="Height") | |
| get_image.click(lambda x: x["composite"].shape, outputs=[height, width], inputs=image) | |
| get_small.click(lambda x: x["composite"].shape, outputs=[height, width], inputs=custom_canvas) | |
| get_fixed.click(lambda x: x["composite"].shape, outputs=[height, width], inputs=custom_canvas_fixed) | |
| if __name__ == "__main__": | |
| demo.launch() |