This article explains how to access EXIF metadata in a file of any supported format, Groupdocs.metadata for Java provides the IExif.getExifPackage method....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...
Python on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Python on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers แก้ไขเมตาดา......Python ค้นพบวิธีการใช้ GroupDocs.Metadata for Python via .NET เพื่อสกัด...
Reading matroska format-specific properties The Groupdocs.metadata API supports extracting format-specific information from MKV files.
The following are the steps to read native MKV metadata.
Load an MKV video Get the root metadata package Extract the native metadata package using MatroskaRootPackage.MatroskaPackage Read the Matroska metadata properties on different levels of the format structure AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Matroska.MatroskaReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputMkv)) { var root = metadata.GetRootPackage(); // Read the EBML header Console....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...
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....Merger Product Family 43 GroupDocs.Metadata Product Family 20 GroupDocs...
Python on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Python on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Python 애플리케......Python 애플리케이션에서 메타데이터 편집하기 GroupDocs.Metadata for Python via .NET을...
Groupdocs.metadata for Java provides functionality that allows working with different kinds of WordProcessing documents such as DOC, DOCX, ODT, etc. For the full list of supported document formats please refer to Supported document formats.
Detecting the exact type of a document The following sample of code will help you to detect the exact type of a loaded document and extract some additional file format information.
Load a WordProcessing document Extract the root metadata package Use the getWordProcessingType method to obtain file format information advanced_usage....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...
Groupdocs.metadata for .NET provides functionality that allows working with MPP files created by different versions of Microsoft Project. Please see the code samples below for more information.
Reading built-In metadata properties To access built-in metadata of a ProjectManagement document, please use the DocumentProperties property defined in the DocumentRootPackage class.
The following code snippet extracts built-in metadata properties and displays them on the screen.
AdvancedUsage.ManagingMetadataForSpecificFormats.Document.ProjectManagement.ProjectManagementReadBuiltInProperties
using (Metadata metadata = new Metadata(Constants.InputMpp)) { var root = metadata....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...
Groupdocs.metadata for Java provides functionality that allows working with MPP files created by different versions of Microsoft Project. Please see the code samples below for more information.
Reading built-In metadata properties To access built-in metadata of a ProjectManagement document, please use the getDocumentProperties method defined in the DocumentRootPackage class.
The following code snippet extracts built-in metadata properties and displays them on the screen.
advanced_usage.managing_metadata_for_specific_formats.document.project_management.ProjectManagementReadBuiltInProperties
try (Metadata metadata = new Metadata(Constants.InputMpp)) { ProjectManagementRootPackage root = metadata....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...