Sort Score
Result 10 results
Languages All
Labels All
Results 2,681 - 2,690 of 5,662 for

file comparison

(0.04 sec)
  1. How to save document with password | Documentation

    This article explains how to save document with password protection....Comparison Product Solution GroupDocs...false }; // sign document to file signature . Sign ( "SignedProtected...

    docs.groupdocs.com/signature/net/save-signed-do...
  2. Pre-rasterize | Documentation

    This article shows how to pre-rasterize a document using the redaction API....Comparison Product Solution GroupDocs...)) { // Make changes to the file as a rasterized PDF, e.g. uisng...

    docs.groupdocs.com/redaction/net/pre-rasterize/
  3. Render SVG as JPG using Python

    Render SVG as JPG using Python in simple and few steps. This tutorial explains how to convert SVG to JPG in Python with custom image dimensions for scalable output....Comparison Product Family GroupDocs...Scalable Vector Graphics ( SVG ) files are widely used for icons, diagrams...

    kb.groupdocs.com/viewer/python/render-svg-as-jp...
  4. 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...
  5. 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-...
  6. Working with metadata in Word Processing docume...

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of WordProcessing documents such as DOC, DOCX, ODT, etc. For the full list of supported document formats please refer to Supported document formats. Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded document and extract some additional File format information. Load a WordProcessing document Extract the root metadata package Use the getWordProcessingType method to obtain File format information advanced_usage....Comparison Product Solution GroupDocs...and extract some additional file format information. a WordProcessing...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Installation | Documentation

    This guide explains how to install GroupDocs.Merger for .NET to your environment...Comparison Product Solution GroupDocs...locate the GroupDocs.Merger.dll file. You have referenced GroupDocs...

    docs.groupdocs.com/merger/net/installation/
  8. Installation | Documentation

    This guide explains how to install GroupDocs.Signature for .NET to your environment...Comparison Product Solution GroupDocs...the GroupDocs.Signature.dll file. You have referenced GroupDocs...

    docs.groupdocs.com/signature/net/installation/
  9. Generating Report using Multiple Data Sources i...

    Note In this article, we will use GroupDocs.Assembly to generate a report. This report will fetch data from multiple data sources. Note The code uses some of the objects defined in The Business Layer. Generating Report in Microsoft Excel Document Creating a Template Insert a desired shape to display image in it. Go to Insert Tab and select shape by clicking on Shape Icon. Add a bullet list at the place where you want it Save your Document Reporting Requirement As a report developer, you are required to generate a report that fetches data from two different data sources (e:g XML, JSON)....Comparison Product Solution GroupDocs...created in previous topic. Click “File” and select “Save As”. Select...

    docs.groupdocs.com/assembly/net/generating-repo...
  10. 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-...