Sort Score
Result 10 results
Languages All
Labels All
Results 341 - 350 of 28,226 for

metadata watermarking

(0.03 sec)
  1. Load from a local disk | Documentation

    The following example demonstrates how to load file from local disk....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  2. Basic Usage | Documentation

    Quick Start section for GroupDocs.Metadata API Manage Metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/python-net/basic-us...
  3. 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....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/getting-known-...
  4. GroupDocs.Redaction for Java

    This API allows you to redact, hide, or remove private contents in any type of file format using Java language on any platform....Metadata Product Family GroupDocs.Search...Product Family GroupDocs.Watermark Product Family GroupDocs.Merger...

    kb.groupdocs.com/redaction/java/
  5. Categories

    Find Answers by API GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product F......Metadata Product Family GroupDocs.Search...Product Family GroupDocs.Watermark Product Family GroupDocs.Merger...

    kb.groupdocs.com/categories/page/11/
  6. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/save-a-modified...
  7. Extracting common image information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root Metadata package Use the getImageType method to obtain file format information advanced_usage.managing_Metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata Metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/extracting-com...
  8. Extract attachments from Emails | Documentation

    Extract email attachments using GroupDocs.Parser for .NET...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/parser/net/extract-attachmen...
  9. 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....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  10. Migration Notes | Documentation

    Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Parser for Java since version 19.11: Parser class is introduced as a single entry point to extract data from the document. Data extraction was unified for all data types. The overall document related classes were unified to common. Product architecture was redesigned from scratch in order to simplify passing options and classes to manipulate data....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/parser/java/migration-notes/