Sort Score
Result 10 results
Languages All
Labels All
Results 51 - 60 of 16,836 for

metadata management

(0.14 sec)
  1. 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 the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_Metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties try (Metadata Metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } 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...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-b...
  2. 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...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-bm...
  3. 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...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/handling-mpeg-a...
  4. Metadata Editor

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file formats....Metadata for .NET 19.1. In this version...latest version, you can extract metadata from Matroska Multimedia Container...

    blog.groupdocs.com/tag/metadata-editor/
  5. Working with EXIF metadata | Documentation

    This article explains how to access EXIF Metadata in a file of any supported format, GroupDocs.Metadata for Java provides the IExif.getExifPackage method....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/working...
  6. Working with vCard metadata | Documentation

    What is vCard? vCard, also known as VCF (Virtual Contact File), is a file format standard for electronic business cards. vCards are often attached to e-mail messages, but can be exchanged in other ways. They can contain name and address information, telephone numbers, e-mail addresses, URLs, logos, photographs, and even audio clips. Note For more information on the format please see https://en.wikipedia.org/wiki/VCard Getting Simple vCard Metadata To access Metadata in a vCard, GroupDocs....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-v...
  7. Working with vCard metadata | Documentation

    What is vCard? vCard, also known as VCF (Virtual Contact File), is a file format standard for electronic business cards. vCards are often attached to e-mail messages, but can be exchanged in other ways. They can contain name and address information, telephone numbers, e-mail addresses, URLs, logos, photographs, and even audio clips. Note For more information on the format please see https://en.wikipedia.org/wiki/VCard Getting Simple vCard Metadata To access Metadata in a vCard, GroupDocs....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-vc...
  8. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic Metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD Metadata To access Metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method. The following code snippet reads Metadata associated with a CAD file. advanced_usage.managing_Metadata_for_specific_formats.cad.CadReadNativeMetadataProperties try (Metadata Metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-c...
  9. Working with CAD metadata | Documentation

    The GroupDocs Metadata API provides the feature to read basic Metadata in CAD files. The supported CAD formats are: DWG DXF Reading CAD Metadata To access Metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.CadPackage property. The following code snippet reads Metadata associated with a CAD file. AdvancedUsage.ManagingMetadataForSpecificFormats.Cad.CadReadNativeMetadataProperties using (Metadata Metadata = new Metadata(Constants.InputDxf)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.CadPackage.AcadVersion); Console.WriteLine(root.CadPackage.Author); Console.WriteLine(root.CadPackage.Comments); Console.WriteLine(root.CadPackage.CreatedDateTime); Console.WriteLine(root.CadPackage.HyperlinkBase); Console.WriteLine(root.CadPackage.Keywords); Console.WriteLine(root.CadPackage.LastSavedBy); Console.WriteLine(root.CadPackage.Title); // ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-ca...
  10. 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...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/traverse-a-whol...