- Overview
- How to Retrieve Base64 Value
- Conclusion
Contact Support
Retrieving Base64 Value from a PDF in PDF Viewer
31 Jan 20251 minute to read
Overview
This guide demonstrates how to fetch the base64-encoded value of a PDF document loaded in the Syncfusion PDF Viewer using Typescript. This is useful for sending the PDF as a base64 string or processing it in the front end.
How to Retrieve Base64 Value
Step 1: Follow the steps provided in the link to create a simple PDF Viewer sample.
Step 2: Create a Button in Your HTML File
Add a button element in your HTML file that will trigger the conversion to a base64 string.
<button id="getBase64">Get Base64</button>
<div id="PdfViewer"></div>
Step 3: Add a Button Click Event Listener
Add an event listener to the button to trigger the base64 retrieval function.
document.getElementById('getBase64')?.addEventListener('click', base64ofloadedDocument);
Step 4: Retrieve Base64 of the Loaded Document
Create a function that uses saveAsBlob, and convert the blob to a base64 string.
// Function to get Base64 of the loaded document
function base64ofloadedDocument() {
pdfviewer.saveAsBlob().then((blob) => {
const reader = new FileReader();
reader.onload = () => {
const base64data = reader.result;
console.log(base64data);
};
// Read the blob as a data URL to get Base64
reader.readAsDataURL(blob);
})
}
Conclusion
By implementing these steps, you can convert a PDF document loaded in the Syncfusion PDF Viewer to a base64 string on button click, facilitating the manipulation or transfer of PDF data as needed.