Sort Score
Result 10 results
Languages All
Labels All
Results 2,601 - 2,610 of 5,629 for

file comparison

(0.04 sec)
  1. Render XLSX as PNG using Python

    Learn how to render XLSX as PNG using Python. This tutorial explains how to convert XLSX to PNG in Python for visual representation....Comparison Product Family GroupDocs...document rendering Open the XLSX file using the Viewer class within...

    kb.groupdocs.com/viewer/python/render-xlsx-as-p...
  2. OCR Usage Basics | Documentation

    This article explains how to use OCR....Comparison Product Solution GroupDocs...To extract a text from image files or non-text PDF documents GetText...

    docs.groupdocs.com/parser/java/ocr-usage-basics/
  3. How to Convert DOCX to PPTX using C#

    You can find the directions to convert docx to pptx using C# in this topic. Moreover, we will help you to write an application to export docx to pptx in C#....Comparison Product Family GroupDocs...convert Word documents to other file formats that are supported....

    kb.groupdocs.com/conversion/net/how-to-convert-...
  4. Scan Barcode from PPTX using Java

    Learn how to scan barcode from PPTX using Java. To facilitate efficient and seamless barcode extraction, it includes an example to extract barcode from PPTX in Java....Comparison Product Family GroupDocs...PPTX (PowerPoint Open XML) files can greatly enhance operations...

    kb.groupdocs.com/parser/java/scan-barcode-from-...
  5. Render XLSX as JPG using Python

    In this topic, we will learn how to render XLSX as JPG using Python. This tutorial explains how to convert XLSX to JPG in Python for static image generation....Comparison Product Family GroupDocs...technical documents. Rendering XLSX files to images removes software dependencies...

    kb.groupdocs.com/viewer/python/render-xlsx-as-j...
  6. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional File format information. Load a PDF document Extract the root metadata package Use the FileType property to obtain File format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata metadata = new Metadata(Constants.InputPdf)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in metadata properties To access built-in metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....Comparison Product Solution GroupDocs...and extract some additional file format information. a PDF document...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a File to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Comparison Product Solution GroupDocs...encountered in a particular package. a file to examine Get a collection...

    docs.groupdocs.com/metadata/java/getting-known-...
  8. How to save PDF document with other format | Do...

    This article explains how to save signed PDF document with various File formats by GroupDocs.Signature API....Comparison Product Solution GroupDocs...true }; // sign document to file signature . Sign ( "SignedPdf...

    docs.groupdocs.com/signature/net/save-signed-pd...
  9. Extend supported extensions list | Documentation

    This article explains the method which can be used when for some reason Files have non-standard extensions or if its format is supported, but not pre-configured....Comparison Product Solution GroupDocs...be used when for some reason files have non-standard extensions...

    docs.groupdocs.com/redaction/net/extend-support...
  10. How to Sign XLSX with Image Signature using Java

    Quickly learn how to sign XLSX with image signature using Java. Moreover, a code example will be provided to create image signature in XLSX using Java....Comparison Product Family GroupDocs...Signature class by using XLSX file path in its constructor Instantiate...

    kb.groupdocs.com/signature/java/how-to-sign-xls...