Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Open PDFjs as base64 string
// https://github.com/heejune/WinForm-PDFjs/blob/master/WinFormPDFViewer/pdfjs-1.4.20-dist/web/viewer.js
// PDFViewerApplication.open wrapper for base64 param
window.openPdfAsBase64 = function (base64) {
var binary_string = window.atob(base64);
var len = binary_string.length;
var bytes = new Uint8Array(len);
for (var i = 0; i < len; i++) {
bytes[i] = binary_string.charCodeAt(i);
}
PDFViewerApplication.open(bytes)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment