Sort Score
Result 10 results
Languages All
Labels All
Results 31 - 40 of 827 for

groupdocs.editor save options

(2.53 sec)
  1. Specify rendering options for CAD files | Group...

    Render CAD files (DWG, DXF, etc.) to HTML, PDF, PNG, or JPEG using GroupDocs.Viewer's Options....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Specify rendering options Specify rendering options for CAD files...

    docs.groupdocs.com/viewer/python-net/specify-ca...
  2. Save HTML to folder | GroupDocs

    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...

    docs.groupdocs.com/editor/java/save-html-to-fol...
  3. Save overwriting original file | GroupDocs

    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....Watermark Product Solution GroupDocs.Editor Product Solution GroupDocs...Usage / Saving documents / Save overwriting original file Save overwriting...

    docs.groupdocs.com/redaction/java/save-overwrit...
  4. Updating Image signatures with advanced options...

     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...

    docs.groupdocs.com/signature/java/updating-imag...
  5. Save HTML to folder | GroupDocs

    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 ...

    docs.groupdocs.com/editor/net/save-html-to-folder/
  6. Specify rendering options for CAD files | Group...

    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...

    docs.groupdocs.com/viewer/net/specify-cad-rende...
  7. Save image as file | GroupDocs

    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...

    docs.groupdocs.com/markdown/net/image-file-stra...
  8. Save to stream | GroupDocs

    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...

    docs.groupdocs.com/redaction/java/save-to-stream/
  9. Save image as base64 | GroupDocs

    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...

    docs.groupdocs.com/markdown/net/as-base64-strat...
  10. Save in rasterized PDF | GroupDocs

    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...

    docs.groupdocs.com/redaction/python-net/save-in...