How to remove tags from a pdf -



How to remove tags from a pdf -

i have pdf there tags this:

62 0 obj << /type /structelem /s /dokumentnavn /p 56 0 r /k 2 /pg 58 0 r >> endobj 60 0 obj << /type /structelem /s /bundtekst /p 56 0 r /k 0 /pg 58 0 r >> endobj 61 0 obj << /type /structelem /s /referencelinjer /p 56 0 r /lang (da) /k 1 /pg 58 0 r >> endobj 68 0 obj << /type /structelem /s /fritekst /p 56 0 r /k 6 /pg 58 0 r >> endobj

i have "removed" them overwriting them % tool checks against whitelist still complains i'm thinking maybe tags used in binary sections of pdf. can abcpdf remove tags or there solution?

docotic.pdf library can remove construction info pdf documents.

below sample code task:

public static void savewithoutstructureinformation(string input, string output) { using (pdfdocument document = new pdfdocument(input)) { document.removestructureinformation(); document.saveoptions.removeunusedobjects = true; document.save(output); } }

disclaimer: work vendor of library.

pdf tags abcpdf

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -