Markus Ast

Results 221 comments of Markus Ast

Thanks for the reports. I went through the PDFs and made the Lexer more forgiving on certain places. They should work now, except the following The PDF `LONGY_JULIE_Complement.dossier_LONGY.Julie.pdf` has a...

@rernens This PDF fails with a different error. I've added it to my TODO to look into it. Regarding the syntax errors of the other PDFs, the following issue has...

I'll try to look into the additional errors once I find the time for it. Since merging existing PDFs was never intended to be the main use-case of `pdfjs`, please...

Hi, thanks for the suggestion! I can totally see the use case of it, but I am also wondering whether this is really something one would want to do on...

Hi, thanks for the kind words! I agree that this would be a very useful feature to have! Though I am not sure about the required effort. I'll have to...

Hi, thanks for the report and for providing an actual example PDF! > The issue is also that this error makes our application crash, it's not caught even if inside...

Hi, this is unfortunately currently not implemented, sorry 😕

I've updated master to give a somewhat more useful error. You'd now get the error: `Expected an image object` The issue you have is that `.image('/images/logo.png', { height: 2*pdf.cm })`...

The error `await is only valid in async function` usually indicates that you are calling `await` in a function that is not `async`. So you probably need the following change:...

Good find! I'll try to look into it this week