Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ if image :
|
|
| 25 |
pillow_image = Image.fromarray(numpy_array)
|
| 26 |
output_path = "output_image.jpg"
|
| 27 |
pillow_image.save(output_path)
|
| 28 |
-
st.image([output_path], caption='Colored Image', use_column_width=
|
| 29 |
st.download_button(
|
| 30 |
label="Download Stylized Image",
|
| 31 |
data=BytesIO(numpy_array.tobytes()),
|
|
|
|
| 25 |
pillow_image = Image.fromarray(numpy_array)
|
| 26 |
output_path = "output_image.jpg"
|
| 27 |
pillow_image.save(output_path)
|
| 28 |
+
st.image([output_path], caption='Colored Image', use_column_width=False)
|
| 29 |
st.download_button(
|
| 30 |
label="Download Stylized Image",
|
| 31 |
data=BytesIO(numpy_array.tobytes()),
|