Hi there,
I’m currently working on a Streamlit application that involves displaying PDF files as a reference within the app. A crucial requirement for this application is the ability to open these PDF files directly at a specific page, enhancing the user experience by directing them immediately to the relevant content.
Here’s the challenge: I’ve successfully embedded PDFs into the app using base64 encoding and an <iframe>
, but I’ve hit a snag when it comes to opening the PDFs at a predetermined page. The current implementation looks something like this:
pythonCopy code
import streamlit as st
import base64
def displayPDF(file):
with open(file, "rb") as f:
base64_pdf = base64.b64encode(f.read()).decode("utf-8")
pdf_display = f'<iframe src="data:application/pdf;base64,{base64_pdf}" width="700" height="1000" type="application/pdf"></iframe>'
st.markdown(pdf_display, unsafe_allow_html=True)
This method successfully displays the PDF, but lacks the functionality to jump to a specific page.
My question to the community: Has anyone tackled a similar challenge or have insights on how to open a PDF at a specific page within a Streamlit app? I’m looking for solutions or workarounds that could be implemented to achieve this functionality, preferably without needing to extract individual pages as separate files.
Any suggestions, code snippets, or guidance on this matter would be greatly appreciated. I’m eager to learn from your experiences and find a solution that could benefit not only my project but others facing similar hurdles.
Thank you in advance for your time and help!
Best regards,
Luca