Sort Score
Result 10 results
Languages All
Labels All
Results 121 - 130 of 16,834 for

metadata management

(0.2 sec)
  1. Metadata redactions | Documentation

    This article shows that how Java redaction API allows you to replace or remove Metadata using filters or search by regular expression....Metadata Product Solution GroupDocs.../ Basic Usage / Metadata redactions Metadata redactions Leave...

    docs.groupdocs.com/redaction/java/metadata-reda...
  2. Working with metadata in Matroska (MKV) files |...

    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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  3. Extract metadata from EPUB using C#

    In this article, we will detail the steps required to extract Metadata from EPUB using C#. Also, a sample of the EPUB Metadata extraction C# code will be provided....Metadata Product Family GroupDocs.Search...Redaction Product Family Extract metadata from EPUB using C# EPUB files...

    kb.groupdocs.com/parser/net/extract-metadata-fr...
  4. Extracting MakerNote Metadata | Documentation

    What is MakerNote? MakerNote Metadata refers to image information that is written by digital cameras of different manufacturers. Usually, MakerNote Metadata properties contain camera settings and some other conditions under which the shot was taken. Most manufacturers store MakerNote properties in a proprietary binary format derived from EXIF. GroupDocs.Metadata allows extracting MakerNote Metadata saved by the following manufacturers: Canon Nikon Panasonic Sony Read all MakerNote Properties in the Form of TIFF/EXIF Tags Utilizing the GroupDocs....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/extracting-make...
  5. Working with metadata in ASF files | Documentation

    Reading ASF format-specific properties The GroupDocs.Metadata API supports extracting format-specific information from ASF files. The following are the steps to read native ASF Metadata. Load an ASF video Get the root Metadata package Extract the native Metadata package using the AsfRootPackage.getAsfPackage method Read the ASF Metadata properties advanced_usage.managing_Metadata_for_specific_formats.video.asf.AsfReadNativeMetadataProperties try (Metadata Metadata = new Metadata(Constants.InputAsf)) { AsfRootPackage root = Metadata.getRootPackageGeneric(); AsfPackage asfPackage = root.getAsfPackage(); // Display basic properties System.out.println(String.format("Creation date: %s", asfPackage....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  6. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root Metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Document.Pdf.PdfReadFileFormatProperties using (Metadata Metadata = new Metadata(Constants.InputPdf)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); } Reading built-in Metadata properties To access built-in Metadata of a PDF document, please use the DocumentProperties property defined in the DocumentRootPackage class....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Working with metadata in PDF documents | Docume...

    Detecting the version of a PDF document The following sample of code will help you to detect the PDF version a loaded document and extract some additional file format information. Load a PDF document Extract the root Metadata package Use the getPdfType method to obtain file format information advanced_usage.managing_Metadata_for_specific_formats.document.pdf.PdfReadFileFormatProperties try (Metadata Metadata = new Metadata(Constants.InputPdf)) { PdfRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getPdfType().getFileFormat()); System.out.println(root.getPdfType().getVersion()); System.out.println(root.getPdfType().getMimeType()); System.out.println(root.getPdfType().getExtension()); } Reading built-in Metadata properties To access built-in Metadata of a PDF document, please use the getDocumentProperties method defined in the DocumentRootPackage class....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  8. Working with metadata in Matroska (MKV) files |...

    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....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  9. Working with metadata in Matroska (MKV) files |...

    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....Metadata Product Solution GroupDocs...Events Acquisition Working with metadata in Matroska (MKV) files Reading...

    docs.groupdocs.com/metadata/net/working-with-me...
  10. Working with metadata in WordProcessing documen...

    GroupDocs.Metadata for .NET 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 FileType property to obtain file format information AdvancedUsage....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

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