Spaces:
Runtime error
Runtime error
File size: 434 Bytes
0c830e5 b101525 5137c86 0c830e5 9214c84 790f898 4352add 27e3c48 0c830e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import PIL
from PIL import ImageDraw
import streamlit as st
def load_image(image_file):
img = PIL.Image.open(image_file)
return img
uploaded_file = st.file_uploader("Upload Files",type=['png','jpeg'])
if uploaded_file is not None:
file_details = {"FileName":uploaded_file.name,"FileType":uploaded_file.type,"FileSize":uploaded_file.size}
st.write(file_details)
st.image(load_image(uploaded_file),width=250)
|