Created
December 25, 2024 00:45
-
-
Save talaatmagdyx/0d373d3db17b76d64c9b47545b09cb2e 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