This article explains how to load password-protected PDF, Word, Excel, PowerPoint documents when using GroupDocs.Merger for .NET....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
This article explains how to add password for PDF document with permissions using GroupDocs.Merger for .NET....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
Follow this guide and learn how to remove page from PDF or Word document, delete worksheet from Excel file or remove slides from PowerPoint presentations with GroupDocs.Merger for .NET API....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
This article explains how to list and print file types supported by GroupDocs.Viewer for Java...Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
Load from local disc GroupDocs.Redaction.Redactor class is a main class in Redaction API, providing functionality to open a document. When document is located on the local disk, you can pass its path to *Redactor *class constructor.
The following example demonstrates how to open a document from local disc:
final Redactor redactor = new Redactor("sample.docx"); try { // Here we can use document instance to perform redactions redactor.apply(new DeleteAnnotationRedaction()); redactor.save(); } finally { redactor....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
Load documents from your local disk using a file path with GroupDocs.Viewer in Python....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
This article shows that how to get the list of all supported file formats of GroupDocs.Redaction by using Java....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
This article explains how to obtain supported file formats list when viewing documents with GroupDocs.Comparison within your .NET applications....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
The following example demonstrates how to save the document as a rasterized PDF file:
final Redactor redactor = new Redactor(Constants.SAMPLE_DOCX); try { // Here we can use document instance to perform redactions redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]"))); SaveOptions tmp0 = new SaveOptions(); tmp0.setAddSuffix(false); tmp0.setRasterizeToPDF(true); // Saving as rasterized PDF with no suffix in file name redactor.save(tmp0); } finally { redactor.close(); }...Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...
This article demonstrates how to move document page to another position within PDF, Word, Excel, PowerPoint document using GroupDocs.Merger for Node.js via Java API....Viewer Product Solution GroupDocs.Annotation Product Solution GroupDocs...