Reputation: 109
How to remove entire hyperlink in pdf file.If anybody knows please answer this question.
Library used in PDFTron and ObjectiveC language. Thanks in advance
Upvotes: 0
Views: 103
Reputation: 123
For link annotations in the document, you can edit and delete them with the link creation tool (PTLinkCreate
class). While the link-create tool is active, existing link annotations will be selected when you tapped. From the annotation-selection popup menu you can tap "Delete" (the last menu option - you may need to scroll or tap the arrow in the menu to see it) to delete the link annotation.
Upvotes: 0
Reputation: 2763
You can try cpdf -remove-annotations in.pdf -o out.pdf
. This does remove all annotations, but if you only have link annotations, that would be ok.
Upvotes: 0