Reputation: 9
I want to manipulate (modify) a fully tagged pdf. Using below code i am able to get the document tree structure
PdfDictionary catalog = reader.Catalog;
PdfDictionary struc = catalog.GetAsDict(PdfName.STRUCTTREEROOT);
now I want to modify the below structure
want to remove tag which is inside the tag, and also move the content from to
to
Please guide me, I have little bit knowledge of coding.
Upvotes: 0
Views: 238