Sort Score
Result 10 results
Languages All
Labels All
Results 151 - 160 of 1,048 for

xmp

(0.02 sec)
  1. 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 the Jpeg2000RootPackage.getJpeg2000Package method Read the JPEG2000 comments advanced_usage.managing_metadata_for_specific_formats.image.jpeg2000.Jpeg2000ReadComments try (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { Jpeg2000RootPackage root = metadata....comment ); } } } Working with XMP metadata GroupDocs.Metadata for...for Java also allows managing XMP metadata in JPEG2000 images....

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Working with metadata in MOV files | Documentation

    Reading MOV format-specific properties The GroupDocs.Metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using the MovRootPackage.getMovPackage method Read the QuickTime atoms advanced_usage.... } } Working with XMP metadata GroupDocs.Metadata for...for Java allows managing XMP metadata in MOV files. For more...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. GroupDocs.Metadata Overview | Documentation

    What is GroupDocs.Metadata? GroupDocs.Metadata for Java is a full featured class library which allows users to read and edit metadata associated with various document, image, audio, video and many other formats. It works with most notable metadata standards: Xmp, EXIF, IPTC, Image Resource Blocks, ID3 and format-specific metadata properties. The Metadata API is very flexible and easy to operate with. It provides extended capabilities allowing working with metadata in a unified way regardless of the file format....notable metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...popular metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...

    docs.groupdocs.com/metadata/java/groupdocs-meta...
  4. 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 getGifImageType method to obtain file format information advanced_usage.managing_metadata_for_specific_formats.image.gif.GifReadFileFormatProperties try (Metadata metadata = new Metadata(Constants.InputGif)) { GifRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getGifImageType().getFileFormat()); System.out.println(root.getGifImageType().getVersion()); System.out.println(root.getGifImageType().getByteOrder()); System.out.println(root.getGifImageType().getMimeType()); System.out.println(root.getGifImageType().getExtension()); System.out.println(root.getGifImageType().getWidth()); System.out.println(root.getGifImageType().getHeight()); } Working with Xmp Metadata GroupDocs....getHeight ()); } Working with XMP Metadata GroupDocs.Metadata for...for Java also allows managing XMP metadata in GIF files. For more...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. Working with metadata in FLV files | Documentation

    Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header. The following are the steps to read the header of an FLV file. Load an FLV video Get the root metadata package Extract the native metadata package using FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with Xmp metadata GroupDocs....TypeFlags ); } Working with XMP metadata GroupDocs.Metadata for...for .NET allows managing XMP metadata in FLV files. For more...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Handling metadata in WAV files | Documentation

    This article explains about the API supports extracting metadata from WAV files... } } Working with XMP metadata GroupDocs.Metadata for...for .NET also allows managing XMP metadata in WAV files. For more...

    docs.groupdocs.com/metadata/net/handling-metada...
  7. 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....comment ); } } } Working with XMP metadata GroupDocs.Metadata for...for .NET also allows managing XMP metadata in JPEG2000 images....

    docs.groupdocs.com/metadata/net/working-with-me...
  8. GroupDocs.Metadata for Node.js overview | Docum...

    Develop Applications to Create, View, Access, Update, Delete, Search, Compare, Replace & Export Metadata of Popular Documents & Image Formats....notable metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...popular metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...

    docs.groupdocs.com/metadata/nodejs-java/product...
  9. GroupDocs.Metadata Overview | Documentation

    The metadata is a data which shows information about other data. It should not be considered as the content of the data. Various types of metadata are existed such as, descriptive, structural, administrative, reference, statistical and legal metadata....notable metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...popular metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...

    docs.groupdocs.com/metadata/net/groupdocs-metad...
  10. 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....getTranslatedKeyword ()); } } } Working with XMP metadata GroupDocs.Metadata for...for Java allows managing XMP metadata in PNG images. For more...

    docs.groupdocs.com/metadata/java/working-with-m...