Replies: 2 comments
-
This is exactly what I came here to ask Andrew - @Hopding . I figured 💯 % that this was an intentional decision not to add this feature, because you've already created |
Beta Was this translation helpful? Give feedback.
0 replies
-
The slow speed of PDF merging is a bottleneck for us over at https://github.com/momijizukamori/bookbinder-js It's especially frustrating that this can't be done with promises. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! First, let me tell you how grateful I am for pdf-lib. I'm finding it full featured and reliable. Thank you for making this available as FOSS.
My one issue is that merging PDFs is slow, at least the way I'm doing it. When I send out reports, I have to append a bunch of related supporting PDFs, using this code:
Right now, we need to call
addPage()
for every page incopiedPages
. Why couldn't the API have somethingaddPages(copiedPages)
?Better yet, because merging an entire PDF is so common, why can't there be an API addition like
pdfdst.merge(pdfsrc)
which is highly optimized?Beta Was this translation helpful? Give feedback.
All reactions