Created
December 25, 2024 00:46
-
-
Save talaatmagdyx/ad18627a7e27f9df489a26e8483b5779 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PIL import Image | |
| import streamlit as st | |
| # Load and display an image | |
| image = Image.open("images/example.jpg") # Replace with your image file | |
| st.image(image, caption="Sample Image", use_container_width=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment