Update app.py
Browse files
app.py
CHANGED
@@ -138,6 +138,7 @@ with demo:
|
|
138 |
with gr.Column():
|
139 |
url_input = gr.Textbox(lines=2,label='Enter valid image URL here..')
|
140 |
original_image = gr.Image(shape=(750,750))
|
|
|
141 |
with gr.Column():
|
142 |
img_output_from_url = gr.Image(shape=(750,750))
|
143 |
|
|
|
138 |
with gr.Column():
|
139 |
url_input = gr.Textbox(lines=2,label='Enter valid image URL here..')
|
140 |
original_image = gr.Image(shape=(750,750))
|
141 |
+
url_input.change(get_original_image, url_input, original_image)
|
142 |
with gr.Column():
|
143 |
img_output_from_url = gr.Image(shape=(750,750))
|
144 |
|