This article explains how to Save edited document in HTML form to folder at local disk using Groupdocs.editor for Java features....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Documentation / GroupDocs.Editor Product Family / GroupDocs.Editor for Java...
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) { SaveOptionsOptions = new SaveOptions(); Options.setAddSuffix(false); Options.setRasterizeToPDF(false); // Save the document in original format overwriting original file redactor.Save(Options); } } finally { redactor....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Usage / Saving documents / Save overwriting original file Save overwriting...
This article explains how to provide advanced Options when updating Image electronic signatures with GroupDocs.Signature API....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Image signatures with advanced options Updating Image signatures with...
This article explains how to Save edited document in HTML form to folder at local disk using Groupdocs.editor for .NET features....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Documentation / GroupDocs.Editor Product Family / GroupDocs.Editor for ...
This topic describes how to use the GroupDocs.Viewer .NET API (C#) to specify various Options for rendering CAD files to HTML, PDF, PNG, and JPEG....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Specify rendering options Specify rendering options for CAD files...
The listed articles below explain how to Saves images to the file system during document conversion....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...usage / Saving image strategy / Save image as file Save image as...
You might need to Save a document to any custom file at any location on the local disc or a even a Stream.
The following example demonstrates how to Save a document to any location.
final Redactor redactor = new Redactor("Sample.docx"); try { // Here we can use document instance to perform redactions RedactorChangeLog result = redactor.apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(java.awt.Color.RED))); if (result.getStatus() != RedactionStatus.Failed) { // Save the document to a custom location and convert its pages to images final FileOutputStream fileStream = new FileOutputStream("C:\\\\Temp\\\\sample_output_file....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Advanced Usage / Saving documents / Save to stream Save to stream Leave...
The listed articles below explain how to embeds images as Base64 strings directly in the Markdown....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...usage / Saving image strategy / Save image as base64 Save image...
This article demonstrates that how to Save the document as a rasterized PDF file...Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...usage / Saving documents / Save in rasterized PDF Save in rasterized...