Efficiently learn how to remove metadata from DOC using C# with a code example demonstrating how to delete metadata from DOC in C# without installing extra software....Merger Product Family GroupDocs.Redaction...including author details, document creation and modification...
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(); }...Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...
This article explains how to get the PDF output file information using .NET / C# with GroupDocs.Viewer for .NET....Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...
The page describes how to add point annotation to a Document using GroupDocs.Annotation for .NET....Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Annotation Product...
Reorder pages when rendering Documents to PDF with GroupDocs.Viewer for Java...Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...
This section explains how to apply additional options to customize output Document when converting Documents with GroupDocs.Conversion for .NET...Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
The following example demonstrates how to save the redacted Document, replacing an original file:
// Make a copy of sample file Files.copy(new File("Sample.docx").toPath(), new File("OverwrittenSample.docx").toPath(), StandardCopyOption.REPLACE_EXISTING); // Apply redaction final Redactor redactor = new Redactor("OverwrittenSample.docx"); try { RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { SaveOptions options = new SaveOptions(); options.setAddSuffix(false); options.setRasterizeToPDF(false); // Save the Document in original format overwriting original file redactor.save(options); } } finally { redactor....Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Redaction Product...
The page describes how to add polyline annotation to a Document using GroupDocs.Annotation for .NET....Merger Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Annotation Product...
Quickly convert HTML to Markdown using C# with one of the popular Document converter APIs and learn how to create the HTML to MD converter in C#....Merger Product Family GroupDocs.Redaction...the best document converter APIs for performing document transformation...