Update app.py
Browse files
app.py
CHANGED
@@ -30,13 +30,8 @@ with col1:
|
|
30 |
|
31 |
st.subheader('New image')
|
32 |
st.image(img, caption=f'Upscaled {choice} times image')
|
33 |
-
st.download_button(
|
34 |
|
35 |
else:
|
36 |
st.text('Not supported yet. Comeback soon for fun releases')
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
|
|
|
30 |
|
31 |
st.subheader('New image')
|
32 |
st.image(img, caption=f'Upscaled {choice} times image')
|
33 |
+
st.download_button(label="Download image", data=img, file_name="upscaled.png", mime="image/png")
|
34 |
|
35 |
else:
|
36 |
st.text('Not supported yet. Comeback soon for fun releases')
|
|
|
|
|
|
|
|
|
|
|
37 |
|