Sort Score
Result 10 results
Languages All
Labels All
Results 3,011 - 3,020 of 6,482 for

file comparison

(0.39 sec)
  1. GroupDocs Watermark Overview | GroupDocs

    GroupDocs.Watermark for Java is a powerful API that helps you add, search, and remove watermarks from documents, images, presentations, and more. Whether you need to protect documents with watermarks, customize watermark content, or automate watermarking at scale, this library gives you everything you need. What You Can Do With GroupDocs.Watermark for Java, you can: Add watermark to document – Add image or text watermarks to PDF, Word, Excel, PowerPoint, Visio, and many other formats....Comparison Product Solution GroupDocs...watermarking across multiple files and folders in your system....

    docs.groupdocs.com/watermark/java/groupdocs-wat...
  2. Features Overview | GroupDocs

    GroupDocs.Redaction for Python via .NET removes sensitive information from documents through a single, format-independent API — text, metadata, image areas, annotations, and whole pages — and saves the result in the original format or as a sanitized PDF....Comparison Product Solution GroupDocs...raster images. The resulting file contains no searchable text...

    docs.groupdocs.com/redaction/python-net/feature...
  3. Getting Started | GroupDocs

    Install GroupDocs.Metadata for Python via .NET, check the system requirements, apply a license, and run your first metadata example....Comparison Product Solution GroupDocs...Quick Start Guide Supported File Formats System Requirements...

    docs.groupdocs.com/metadata/python-net/getting-...
  4. Add watermarks to PDF documents | GroupDocs

    The watermarking Java API allows you to add watermarks to PDF documents. Adding watermarks to a particular page or adding watermarks on all images or attachments of a particular page is possible....Comparison Product Solution GroupDocs...affecting the meaning of the PDF file. The crop box defines the region...

    docs.groupdocs.com/watermark/java/add-watermark...
  5. Load document from stream | GroupDocs

    The page describes how to load PDF, Word, Excel, PowerPoint documents from stream using GroupDocs.Annotation for .NET....Comparison Product Solution GroupDocs...C# using ( documentStream = File . OpenRead ( "input.pdf" ))...

    docs.groupdocs.com/annotation/net/load-document...
  6. How to Run Examples | GroupDocs

    Clone the runnable GroupDocs.Viewer for Python via .NET examples repository, configure a virtual environment, apply a license, and execute every documented scenario locally or in Docker....Comparison Product Solution GroupDocs...rendering-basics │ │ ├── render-archive-files │ │ ├── render-cad-documents...

    docs.groupdocs.com/viewer/python-net/getting-st...
  7. Conversion events | GroupDocs

    Subscribe to pipeline lifecycle and per-result conversion events through the typed ConversionEvents aggregator in GroupDocs.Conversion for .NET....Comparison Product Solution GroupDocs...=> { using ( var fileStream = File . Create ( "custom.pdf" )) {...

    docs.groupdocs.com/conversion/net/conversion-ev...
  8. Locales for output document | GroupDocs

    This guide demonstrates how to edit RTL documents and specify locale for Word documents when using GroupDocs.Editor for Python via .NET API....Comparison Product Solution GroupDocs...sample-document.docx is the sample file used in this example. Click...

    docs.groupdocs.com/editor/python-net/locales-fo...
  9. 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-...
  10. Getting known property descriptors | GroupDocs

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