Sort Score
Result 10 results
Languages All
Labels All
Results 1,621 - 1,630 of 2,646 for

product comparison examples

(0.03 sec)
  1. System Requirements | Documentation

    GroupDocs.Signature for Java does not require any external software or third party tool to be installed....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/signature/java/system-requir...
  2. Save overwriting original file | Documentation

    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....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/redaction/java/save-overwrit...
  3. Convert font formats | Documentation

    This article demonstrates how you can convert font formats with GroupDocs.Conversion for Java....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/conversion/java/convert/font/
  4. Load document from FTP | Documentation

    This article demonstrates how to convert document stored in FTP storage using GroupDocs.Conversion for Java API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/conversion/java/load-documen...
  5. Render documents | Documentation

    Convert documents to HTML, PDF, or images with GroupDocs.Viewer for Python....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/viewer/python-net/rendering-...
  6. Save specific page range | Documentation

    This article demonstrates how to save specific page range when annotating documents using GroupDocs.Annotation for .NET API....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/annotation/net/save-specific...
  7. Load document from stream | Documentation

    The page describes how to load PDF, Word, Excel, PowerPoint documents from stream using GroupDocs.Annotation for Java....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/annotation/java/load-documen...
  8. Add document to Spreadsheet via OLE | Documenta...

    This article explains how to add document to Spreadsheet via OLE with GroupDocs.Merger within your .Java applications....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/merger/java/add-document-to-...
  9. Save to stream | Documentation

    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....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/redaction/java/save-to-stream/
  10. Determine the file type | Documentation

    This article explains how to get a type of a file with GroupDocs.Viewer for Java using Java....Close Navigation Products GroupDocs.Total Product Family GroupDocs...Viewer Product Solution GroupDocs.Annotation Product Solution...

    docs.groupdocs.com/viewer/java/how-to-determine...