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