How to save PDF document to Based64?

Hi,
I have a use case where I need to load the PDF document and then press a button to trigger saving function.
the saving function will translate the PDF to based64.

is there any code sample for angular?
thanks

Hello, I’m Ron, an automated tech support bot :robot:

While you wait for one of our customer support representatives to get back to you, please check out some of these documentation pages:

Guides:APIs:Forums:

This guide shows how you can get the PDF data as an ArrayBuffer https://www.pdftron.com/documentation/web/guides/saving-updated-pdf/

That code goes on to create a Blob, but you can stop at this line where it’s an ArrayBuffer
const data = await doc.getFileData(options);

Then you could use an approach like this to convert the ArrayBuffer to base64 javascript - ArrayBuffer to base64 encoded string - Stack Overflow