Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -124,7 +124,8 @@ else:
|
|
124 |
if f is None:
|
125 |
st.write("Please upload an image file")
|
126 |
else:
|
127 |
-
|
|
|
128 |
st.write(f)
|
129 |
image1= Image.open(f)
|
130 |
st.image(image1,use_column_width = True)
|
|
|
124 |
if f is None:
|
125 |
st.write("Please upload an image file")
|
126 |
else:
|
127 |
+
stringio = StringIO(f.getvalue().decode("utf-8"))
|
128 |
+
f = stringio.read()
|
129 |
st.write(f)
|
130 |
image1= Image.open(f)
|
131 |
st.image(image1,use_column_width = True)
|