Sort Score
Result 10 results
Languages All
Labels All
Results 141 - 150 of 1,048 for

xmp

(0.03 sec)
  1. 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 the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with Xmp metadata GroupDocs....getTypeFlags ()); } Working with XMP metadata GroupDocs.Metadata for...for Java allows managing XMP metadata in FLV files. For more...

    docs.groupdocs.com/metadata/java/working-with-m...
  2. Working with metadata in TIFF images | Document...

    Working with Xmp metadata GroupDocs.Metadata for Java allows managing Xmp metadata in TIFF images. For more details please refer to the following guide: Working with Xmp Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF Metadata section. Working with IPTC metadata GroupDocs.Metadata for Java is also able to work with IPTC metadata in TIFF images....Leave feedback Working with XMP metadata GroupDocs.Metadata for...for Java allows managing XMP metadata in TIFF images. For more...

    docs.groupdocs.com/metadata/java/working-with-m...
  3. Working with metadata in TIFF images | Document...

    Working with Xmp metadata GroupDocs.Metadata for .NET allows managing Xmp metadata in TIFF images. For more details please refer to the following guide: Working with Xmp metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in TIFF images. Please find appropriate code samples in the Working with EXIF metadata section. Working with IPTC metadata GroupDocs.Metadata for .NET is also able to work with IPTC metadata in TIFF images....Leave feedback Working with XMP metadata GroupDocs.Metadata for...for .NET allows managing XMP metadata in TIFF images. For more...

    docs.groupdocs.com/metadata/net/working-with-me...
  4. Features Overview | Documentation

    A .NET metadata API can be effectively used in removing, updating and reading metadata in a variety of formats. It is very effective in removing metadata from photos. Supporting iptc metadata, exif metadata and Xmp metadata....metadata, exif metadata and xmp metadata. Below list shows the...popular metadata standards: IPTC, XMP, EXIF, Image Resources Manipulating...

    docs.groupdocs.com/metadata/net/features-overview/
  5. PNG Metadata Editor – View & Edit PNG Properties

    Discover ways to view and edit PNG metadata. Either edit PNG metadata online or do it programmatically using C# & Java....details for the native, EXIF, and XMP properties as needed. After you’re...Metadata using C# and Manage XMP and EXIF Data of Images using...

    blog.groupdocs.com/metadata/view-edit-png-metad...
  6. Upcoming Release of GroupDocs.Metadata for Java

    We are happy to announce that GroupDocs.Metadata is coming soon to Java Platform. It will be a back-end API that will allow you to work with metadata associated with various file formats including documents, images, audios, videos, zip, emails and many more. The API aims to facilitate its users with simple syntax, easy to use methods and few lines of code to perform metadata operations. GroupDocs.Metadata for Java will soon be available for download....popular metadata standards: XMP, EXIF, IPTC, Image Resource Blocks...Jpeg and TIFF formats Manage XMP metadata in image and PDF formats...

    blog.groupdocs.com/metadata/upcoming-release-of...
  7. Working with metadata in HEIF/HEIC images | Doc...

    Working with Xmp metadata GroupDocs.Metadata for Java allows managing Xmp metadata in HEIF/HEIC images. For more details please refer to the following guide: Working with Xmp Metadata. Working with EXIF metadata The GroupDocs.Metadata API supports handling EXIF metadata in HEIF/HEIC images. Please find appropriate code samples in the Working with EXIF Metadata section. More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Leave feedback Working with XMP metadata GroupDocs.Metadata for...for Java allows managing XMP metadata in HEIF/HEIC images. For...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. 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.... Height ); } Working with XMP Metadata GroupDocs.Metadata for...for .NET also allows managing XMP metadata in GIF files. For more...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Read Maker Notes from Canon and Panasonic using...

    The GroupDocs team is really pleased to announce the release of version 17.8.0 of the GroupDocs.Metadata for .NET API. The latest release comes up with a couple of new features and enhancements along with a bug fix. The API further improves its functionality by implementing the ability to read maker notes for Canon and Panasonic cameras. Beside adding two new manufacturers to the supported list, the API now supports some more camera models for SONY and Nikon that were not previously supported....was resulting in the loss of XMP metadata. The latest release...this issue and preserves the XMP metadata intact after a user...

    blog.groupdocs.com/metadata/read-maker-notes-fr...
  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.PngPackage Read the PNG metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Png.PngReadTextChunks using (Metadata metadata = new Metadata(Constants.InputPng)) { var root = metadata.GetRootPackage(); foreach (var chunk in root.PngPackage.TextChunks) { Console.WriteLine(chunk.Keyword); Console.WriteLine(chunk.Text); var compressedChunk = chunk as PngCompressedTextChunk; if (compressedChunk !...TranslatedKeyword ); } } } Working with XMP metadata GroupDocs.Metadata for...for .NET allows managing XMP metadata in PNG images. For more...

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