Spaces:
Runtime error
Runtime error
Commit
·
790f898
1
Parent(s):
9214c84
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ uploaded_file = st.file_uploader("Upload Files",type=['png','jpeg'])
|
|
7 |
if uploaded_file is not None:
|
8 |
file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type,"FileSize":uploaded_file.size}
|
9 |
st.write(file_details)
|
|
|
10 |
|
11 |
|
12 |
|
|
|
7 |
if uploaded_file is not None:
|
8 |
file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type,"FileSize":uploaded_file.size}
|
9 |
st.write(file_details)
|
10 |
+
st.image(load_image(uploaded_file),width=250)
|
11 |
|
12 |
|
13 |
|