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

I could not see the option to find the total number of pages in both external pdf document and doc created in pdfjs. is there any method available to get...

Is there any way to create a table of contents with this lib? It looks great and I'd hate to choose another one cause this is impossible, but from the...

const dataUrl = 'data:application/octet-binary;base64,' + url; const blob = await fetch(dataUrl) .then((res) => res.blob()); const ext = new pdf.ExternalDocument(blob.arrayBuffer()); **got error Name must start with a leading slash, found: %**...

pdf-merge

There are apparently quite a few PDFs out there with a syntax error similar to: ``` 1.0 : Syntax error, XREF for 11:0 points to wrong object: 10:0 ``` This...

Hi, I am using your library for merging multiples pdfs in one after uploading various documents from aa web application. While this is working without problems most of the time,...

pdf-merge

Hi Markus, thanks a lot for this lib with it's Wonderfull api. It's way more focused on devs needs and real world use-cases than any other lib I had the...

Hi, The idea is to add a overflow hidden or ellipsis at the end of the cell, some thing like this: ```javascript let row = table.row({overflow: 'hidden'}); let cell1 =...

Extracted from https://github.com/rkusa/pdfjs/issues/191 When [moving already rendered stuff to the next page](https://github.com/rkusa/pdfjs/blob/master/lib/cell.js#L43-L48), the cells rendered afterwards must be [moved down](https://github.com/rkusa/pdfjs/blob/master/lib/cell.js#L86) by the height of the moved stuff. However, this only...

Hi; the 'first table row' on the 'second page' is just one line height, but should be three. This behavior does not exist on the 'first table row' on 'page...