I’m displaying a local png with the following:
# Header
logo = PIL.Image.open('./data/streamlit/ar1.png')
# st.markdown('') # this failed to display with a little broken file symbol
st.image(logo, width=700, output_format='png') # logo
However, it’s displaying at lower resolution than the original image. I had trouble using markdown as a workaround. Might you be able to advise on what the issue might be or how to use markdown?