Some test text!

Search
Hamburger Icon

Nodejs / Guides / Remove annotation

Remove annotation from document in Node.js

To remove an annotation from a document.

async function main() {
  const doc = await PDFNet.PDFDoc.createFromURL(filename);
  const page = await doc.getPage(1);

  // remove by index
  await page.annotRemove(0);

  // remove by annotation
  const annotation = await page.getAnnot(0);
  await page.annotRemove(annotation);
}
PDFNet.runWithCleanup(main);

Get the answers you need: Chat with us