We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hallo.
I want to merge serveral PDF to one pdf.
async function MergePDF(pdfstring) { const { PDFDocument } = PDFLib
const pdf = JSON.parse(pdfstring) var pdfsToMerge = []; Microsoft.Dynamics.NAV.InvokeExtensibilityMethod("MergePDF_Begin", ''); for (var j = 0; j < pdf.length; j++) { var pdf64 = pdf[j].pdf; var raw1 = window.atob(pdf64); var len1 = raw1.length; var pdfBuffer1 = new Uint8Array(new ArrayBuffer(len1)); for (var i = 0; i < len1; i++) { pdfBuffer1[i] = raw1.charCodeAt(i); } pdfsToMerge[j] = pdfBuffer1; } const mergedPdf = await PDFDocument.create(); for (const pdfBytes of pdfsToMerge) { const pdf = await PDFDocument.load(pdfBytes); const copiedPages = await mergedPdf.copyPages(pdf, pdf.getPageIndices()); copiedPages.forEach((page) => { mergedPdf.addPage(page); } ); } // --- const buf = await mergedPdf.saveAsBase64(); var pdftoNAV = [buf] Microsoft.Dynamics.NAV.InvokeExtensibilityMethod("DownloadPDF", pdftoNAV);
}
// The Lines Microsoft.Dynamics.NAV.* are Eevents to Outside Javascript. The Javascript is called by Microsoft BC 365.
I test with PDF Dokuments I have on may disk. Some PDF not Merged. This PDF -"Part" are Missing in merged PDF
I want that all PDF Dokuments to merge are Merged in one PDF.
the last of your homepage
Browser
The text was updated successfully, but these errors were encountered:
Not sure I understand what you're trying to do with the Microsoft stuff. If you need a method that merges PDFDocument objects, I wrote this one up:
/***
Sorry, something went wrong.
No branches or pull requests
What were you trying to do?
Hallo.
I want to merge serveral PDF to one pdf.
How did you attempt to do it?
async function MergePDF(pdfstring) {
const { PDFDocument } = PDFLib
}
//
The Lines Microsoft.Dynamics.NAV.* are Eevents to Outside Javascript.
The Javascript is called by Microsoft BC 365.
What actually happened?
I test with PDF Dokuments I have on may disk.
Some PDF not Merged. This PDF -"Part" are Missing in merged PDF
What did you expect to happen?
I want that all PDF Dokuments to merge are Merged in one PDF.
How can we reproduce the issue?
Version
the last of your homepage
What environment are you running pdf-lib in?
Browser
Checklist
Additional Notes
The text was updated successfully, but these errors were encountered: