This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /guides/web/print/without-annotations.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. Print PDF without annotations using JavaScript | Nutrient SDK

You can use our programmatic API to print a document without annotations by setting the excludeAnnotations flag:

NutrientViewer.load(configuration)
.then((instance) => {
instance.print({
excludeAnnotations: true
});
})
.catch((error) => {
console.error("Failed to load document:", error.message);
});