pdfjs icon indicating copy to clipboard operation
pdfjs copied to clipboard

A Portable Document Format (PDF) generation library targeting both the server- and client-side.

Results 77 pdfjs issues
Sort by recently updated
recently updated
newest added

The test added here https://github.com/rkusa/pdfjs/commit/1c087a180f2133b49475feb75bcc42b76c6eff6c (#150) shows that the added template seem to effect the graphical state of the page content that comes on t of it: ![Screenshot 2019-10-06 at...

Hi, I am trying to merge multiple pdfs into one and add pagenumbers after. See implementation: ```js let doc = new pdf.Document() let ext = new pdf.ExternalDocument(src) doc.addPagesOf(ext) let footer...

pdf-merge

We ran into a pdfjs (v2.4.5) problem: https://github.com/nbesli/pdf-merger-js/issues/42 The following code-snipped... ```js const doc = new pdf.Document() const src = await fs.readFile(path.join(FIXTURES_DIR, 'issue-42.pdf')) const ext = new pdf.ExternalDocument(src) doc.addPagesOf(ext) const...

pdf-merge

A client of mine has found some more issues in the PdfJs library. This is kind of a continuation of my previously logged issue (#209) in a broad sense, but...

pdf-merge

Hi! After some research it seams this is a known issue due to pdf generators not following pdf specifications close enough. Unfortunately we still have to deal with it... Any...

i'm trying to load arial font (.ttf) but when i load it all text dissapears. This is how i'm loading fonts `var arial = fs.readFileSync(__dirname + '/assets/fonts/arial.ttf'); var fontArial =...

I have asked [this question](https://stackoverflow.com/questions/70349880/error-the-table-already-has-a-header-add-additional-rows-to-the-existing-tabl) on Stackoverflow but, with no answer after 24 hours, I have little hope to get one, now. So, how do one "add additional rows to...

Hi, Thanks for the great package. :-) I'm getting an exception with message 'incorrect header check' when merging a file. Attaching the problem file. Appreciate if you could check when...

pdf-merge

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

Hi, first thanks for this awesome library - I've been using it on a particular project for years. I have a new requirement on this project to digitally sign PDFs...