Sort Score
Result 10 results
Languages All
Labels All
Results 41 - 50 of 2,558 for

image watermark metadata

(0.04 sec)
  1. Adding metadata | Documentation

    This article shows how to add Metadata properties which is the most sophisticated feature of the GroupDocs.Metadata search engine...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/adding-metadata/
  2. Working with metadata in GIF images | Documenta...

    Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF Image and extract some additional file format information. Load a GIF Image Extract the root Metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties using (Metadata Metadata = new Metadata(Constants.InputGif)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Working with DICOM metadata | Documentation

    Reading DICOM Metadata properties The GroupDocs.Metadata API supports extracting format-specific information from DICOM Images. The following are the steps to read the native DICOM Metadata. Load a DICOM Image Get the root Metadata package Extract the native Metadata package using the DicomRootPackage.getDicomPackage method Read the DICOM Metadata properties examples.advanced_usage.managing_Metadata_for_specific_formats.Image.dicom.DicomReadNativeMetadataProperties try (Metadata Metadata = new Metadata(Constants.InputDicom)) { DicomRootPackage root = Metadata.getRootPackageGeneric(); if (root.getDicomPackage() != null) { System.out.println(root.getDicomPackage().getBitsAllocated()); System.out.println(root.getDicomPackage().getReds()); System.out.println(root.getDicomPackage().getGreens()); System.out.println(root.getDicomPackage().getBlues()); System....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/working-with-d...
  4. Extracting metadata | Documentation

    Using the GroupDocs.Metadata search engine you can extract desired Metadata properties from files of different types. You don’t need to worry about the exact file format and Metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used Metadata properties are marked with tags that allow searching them across all supported files in various Metadata packages. All tags defined in GroupDocs....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/java/extracting-met...
  5. 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...
  6. Removing metadata | Documentation

    Not all Metadata properties extracted from a file are marked with tags. Some file formats and Metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the GroupDocs.Metadata search engine allowing to remove Metadata properties....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/nodejs-java/removin...
  7. Updating metadata | Documentation

    The Example in this article demonstrates that how to update Metadata properties using a combination of criteria...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/nodejs-java/updatin...
  8. Traverse a whole metadata tree | Documentation

    This article explains that the GroupDocs.Metadata for Java 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/java/traverse-a-who...
  9. Adding metadata | Documentation

    This article shows how to add Metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Python via .NET search engine...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...

    docs.groupdocs.com/metadata/python-net/adding-m...
  10. Working with BMP metadata | Documentation

    Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers. The following are the steps to read the header of a BMP file. Load a BMP Image Get the root Metadata package Extract the native Metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties using (Metadata Metadata = new Metadata(Constants.InputBmp)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } 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/net/working-with-bm...