Sort Score
Result 10 results
Languages All
Labels All
Results 71 - 80 of 27,863 for

watermarking metadata

(0.03 sec)
  1. Traverse a whole metadata tree | Documentation

    This article explains that the GroupDocs.Metadata represents any loaded file as a tree consisting of Metadata properties and nested Metadata packages. You can easily iterate through the Metadata tree...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/traverse-a-whol...
  2. Working with metadata in JPEG images | Document...

    Reading Photoshop Metadata properties The GroupDocs Metadata API allows the user to read Adobe Photoshop Metadata associated with a JPEG image. For more information on the Photoshop file format and Metadata blocks that can be attached to images of different formats please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/. The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop file format) from a JPEG image....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. eSign Presentation with Metadata signature | Do...

    This article explains how to add Metadata signatures to Presentation document with GroupDocs.Signature...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/signature/java/esign-present...
  4. Handling MPEG audio metadata | Documentation

    This article explains how the The GroupDocs.Metadata API allows reading some common MPEG audio properties from MP3 files....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/handling-mpeg-a...
  5. Working with MP3 metadata | Documentation

    Working with XMP Metadata GroupDocs.Metadata for Java also allows managing XMP Metadata in MP3 files. For more details please refer to the following guide: Working with XMP Metadata...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Working with metadata in Diagrams | Documentation

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Working with metadata in Spreadsheets | Documen...

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of spreadsheet formats such as XLS, XLSX, ODS, 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 spreadsheet and extract some additional file format information. Load a Spreadsheet document Extract the root Metadata package Use the getSpreadsheetType method to obtain file format information advanced_usage....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Working with metadata in PNG images | Documenta...

    Reading PNG Metadata properties The GroupDocs.Metadata API supports extracting format-specific information from PNG images. The following are the steps to read the native PNG Metadata. Load a PNG image Get the root Metadata package Extract the native Metadata package using PngRootPackage.getPngPackage Read the PNG Metadata properties advanced_usage.managing_Metadata_for_specific_formats.image.png.PngReadTextChunks try (Metadata Metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = Metadata.getRootPackageGeneric(); for (PngTextChunk chunk : root.getPngPackage().getTextChunks()) { System.out.println(chunk.getKeyword()); System.out.println(chunk.getText()); if (chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) chunk; System....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. Working with IPTC IIM metadata | Documentation

    This article shows how to access IPTC Metadata in a file of any supported format....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/working-with-ip...
  10. Working with metadata in JPEG2000 images | Docu...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images. The following are the steps to read the JPEG2000 comments (pieces of Metadata represented as strings with the length up to 64 kbytes). Load a JPEG2000 image Get the root Metadata package Extract the native Metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments using (Metadata Metadata = new Metadata(Constants.InputJpeg2000)) { var root = Metadata.GetRootPackage(); if (root....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/working-with-me...