Sort Score
Result 10 results
Languages All
Labels All
Results 4,971 - 4,980 of 12,456 for

document comparison

(0.36 sec)
  1. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your Document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....Comparison Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  2. Scan Barcode from DOC using C#

    Learn how to scan barcode from DOC using C#. With the help of this guide, you will learn how to extract barcode from DOC in C# efficiently without using extra tools....Comparison Product Family GroupDocs...and their use in DOC (Word Document) files is becoming increasingly...

    kb.groupdocs.com/parser/net/scan-barcode-from-d...
  3. Read Metadata from XLSX using Java

    Discover how to read metadata from XLSX using Java without the need of additional software. You will be given a code example to read metadata of XLSX using Java....Comparison Product Family GroupDocs...authorship, creation dates, and document properties, offers valuable...

    kb.groupdocs.com/metadata/java/read-metadata-fr...
  4. comparersettings - GroupDocs.Comparison for Jav...

    All Classes Packages com.groupdocs.Comparison com.groupdocs.Comparison.cells.style com.groupdocs.Comparison.common co......comparison com.groupdocs.comparison.cells.style com...groupdocs.comparison.common com.groupdocs.comparison.common.delegates...

    apireference.groupdocs.com/comparison/java/com....
  5. Convert files to various formats | Documentation

    This page explains how to convert a file to PDF, Word, Excel, PowerPoint, Email, JPG, PNG, TIFF, and many other formats with just a couple of lines of Java code....Comparison Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Conversion Product...

    docs.groupdocs.com/conversion/java/convert/
  6. package-summary - GroupDocs.Comparison for Java...

    All Classes Packages com.groupdocs.Comparison com.groupdocs.Comparison.cells.style com.groupdocs.Comparison.common co......comparison com.groupdocs.comparison.cells.style com...groupdocs.comparison.common com.groupdocs.comparison.common.delegates...

    apireference.groupdocs.com/comparison/java/com....
  7. Get file info | Documentation

    This article explains the ability of the GroupDocs.Redaction API to get the general Document information, which includes FileType, PageCount and FileSize....Comparison Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/get-file-info/
  8. Load from a local disk | Documentation

    The following example demonstrates how to load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your Document. Ex: @"C:\Docs\source.one" try (Metadata metadata = new Metadata(Constants.InputOne)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: GroupDocs.Metadata for .NET examples GroupDocs.Metadata for Java examples...Comparison Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  9. Render original page size | GroupDocs.Viewer fo...

    This article explains how to set the output image size to be the same as the page size of a PDF Document with GroupDocs.Viewer within your .NET applications....Comparison Product Solution GroupDocs...only. When rendering PDF documents in JPG and PNG formats by...

    docs.groupdocs.com/viewer/net/rendering-pages-t...
  10. 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....Comparison Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Redaction Product...

    docs.groupdocs.com/redaction/java/save-overwrit...