Incremental Save #1443
Answered
by
pubpub-zz
pulse-mind
asked this question in
Q&A
Incremental Save
#1443
-
Hi Thanks for the job done on this library. Is it possible to do incremental save using pypdf2. Which is required when adding annotation on a pdf that contains a signature. Best regards, |
Beta Was this translation helpful? Give feedback.
Answered by
pubpub-zz
Nov 21, 2022
Replies: 1 comment 1 reply
-
Currently the PdfWriter class is working with only one generation of objects. When you append a document or pages, those are copied/imported, losing there original reference. this is not compatible with the incremental update. you may add it the #1181 thread. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
MartinThoma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the PdfWriter class is working with only one generation of objects. When you append a document or pages, those are copied/imported, losing there original reference. this is not compatible with the incremental update. you may add it the #1181 thread.