File size: 161 Bytes
ae0ae97
1b2c149
ae0ae97
1b2c149
d1d57b8
 
 
1
2
3
4
5
6
7
8
import streamlit as st
from PIL import Image

file = st.file_uploader('Upload An Image')
with Image.open(file) as img:
    st.write(file)
    st.write(img.size)