This article provides the knowledge that how to export Metadata properties to an Excel workbook....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...
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 Java...
Export Metadata properties to an Excel workbook, CSV, JSON or XML using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...
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 DicomRootPackage.DicomPackage Read the DICOM Metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties
using (MetadataMetadata = new Metadata(Constants.InputDicom)) { var root = Metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...
The SetProperties method is used to update or add Metadata. You can easily add Metadata to photos, pdfs or you can update or add data to mp3 files....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...
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...
The easiest way to remove Metadata properties from a file is to use corresponding tags that allow you to locate the desired properties across all Metadata packages....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...
Working with XMP Metadata GroupDocs.Metadata for .NET allows managing XMP Metadata in WEBP images. For more details please refer to the following guide: Working with XMP Metadata.
More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:
GroupDocs.Metadata for .NET examples GroupDocs.Metadata for Java examples Free online document MetadataManagement App Along with full featured .NET library we provide simple, but powerful free Apps....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...
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 (MetadataMetadata = 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...
The set_properties method updates or adds Metadata. Use it to add Metadata to photos and PDFs or to update data in MP3 files with GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...