Replies: 3 comments 4 replies
-
Hard to imagine how this may make sense at all: annotations are page-specific after all. But even assuming we had an algorithm for that, general annotations can encompass all sorts of things, so that I would argue it is not possible at all, or require a very significant effort. |
Beta Was this translation helpful? Give feedback.
-
Ok, I understand better now. Otherwise you must iterate thru the annotations of modified.pdf's pages, read out its definitions and re-insert each in the corresponding original page. |
Beta Was this translation helpful? Give feedback.
-
@JorjMcKie, p_cnt=0
for page in modified_pdf:
for annot in page.annots():
ori_pdf[p_cnt].add_annot(annot)
p_cnt+=1 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there an easy way to copy Highlights and Annotations from one pdf to another?
Could you please lay out the necessary things that have to be taken care of?
Beta Was this translation helpful? Give feedback.
All reactions