Markus Ast

Results 221 comments of Markus Ast

Thanks for the report! Would you mind providing a minimal example? Here is a minimal example that is working fine for me: ```js const doc = new pdf.Document() doc.pipe(fs.createWriteStream('test.pdf')) doc.header().text("Header")...

I am not aware of any module that leads to conflicts - sorry. If you are able to trim your issue down to a small example, I'd be happy to...

I am afraid that PNG support needs to be implemented and added to `pdfjs` either by me or via a contribution by someone else. It is actually a missing feature...

Hi, this is not possible with `pdfjs` right now. https://stackoverflow.com/a/39763562 sums it up quite nicely. While it can be done by embedding JavaScript, it is not a "cross-plattform, guaranteed-to-work way"...

Please provide more information. Are you talking about opening PDFs created with this library on the client-side, or about downloading and then opening PDFs created on the client-side? Why do...

https://github.com/rkusa/pdfjs/blob/master/playground/playground.js can be used to get an idea of the client-side usage until documentation is available. In a nutshell: Have an object like: ```html This browser does not support PDFs....

Link Annotations are added with b1240a923e9e51493d012582724b78cbe1afae95

@rhodgkins I am open to adding named destinations, but I do not have the use case. Reading the PDF specification is the most time consuming part of adding a feature....

@rhodgkins Thanks al lot for the summary! I've added it to the list of possible things to do during a long flight in the upcoming days 🙂 I am using...

@rhodgkins Just wanted to let you know that while I have a first implementation of destinations, I found some parts of the library that need improvement before I am pushing...