Skip to content

Instantly share code, notes, and snippets.

@threecifanggen
Created December 27, 2021 04:04
Show Gist options
  • Select an option

  • Save threecifanggen/439cfa48fbd7ffc2d88351cb5d5429a2 to your computer and use it in GitHub Desktop.

Select an option

Save threecifanggen/439cfa48fbd7ffc2d88351cb5d5429a2 to your computer and use it in GitHub Desktop.
[Streamlit使用图片] `streamlit`使用图片使用方法 #streamlit #python

streamlit无法直接使用image的地址来读取,要使用PIL读取数据后展示:

from PIL import Image

fire_dir = "/dir/to/image"
image = Image.open(fire_dir)
st.image(image)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment