Justin Williamson

Results 11 comments of Justin Williamson

Sorry for the delay. Did you try using PDFtk directly and see if you have the same issue with the output? If that's the case, this is an issue with...

Sorry, I have a new baby at home and haven't had any spare time to check on this repo in a while. I'll get to it as soon as I...

Sorry for the delay. Hopefully I will get to this sometime this week

Sorry, again for taking so long with this. Hope you're still interested. After reviewing the code, I really like the better handling of the updateInfo method. I personally have never...

I've ran into this as well. It seems the PDFtk library sometimes returns **2** as a generic exception. [I pulled a screenshot off this page](https://www.pdflabs.com/docs/pdftk-version-history/): ![image](https://user-images.githubusercontent.com/12628694/133675991-e19bc614-592a-4436-b1a9-7a78081e785c.png) Sorry, I don't think...

This method is pretty straightforward: ```javascript pdftk .input('./multiPage.pdf') .burst() .then(() => { // There is no output - files will be created in working directory // You'll have to use...

@gustawdaniel Thanks for pointing that out. You can actually pass the output argument to the burst method: ```javascript pdftk .input(pdf) .burst('./your/file/path/page_%02d.pdf') .then(()=> { }) ```

Found a bonehead mistake that was re-assigning the _ignoreWarnings property. This hopefully takes care of the problem. Let me know if it doesn't. I published the fix to npm as...

Hopefully fixed in 2.1.2. Let me know if it's still a problem