Sort Score
Result 10 results
Languages All
Labels All
Results 101 - 110 of 6,185 for

groupdocs.metadata

(0.09 sec)
  1. Metadata Management on GroupDocs Blog | Documen...

    Metadata Management on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Metadata Management on GroupDocs Blog | Document Automation Solutions for .NET & J......Odkryj, jak wykorzystać GroupDocs.Metadata for Python via .NET do...Odkryj, jak wykorzystać GroupDocs.Metadata for Node.js do wyodrębniania...

    blog.groupdocs.com/pl/tag/metadata-management/i...
  2. Remove metadata properties | Documentation

    This article shows that how to remove metadata properties from a file is to use corresponding tags that allow you to locate the desired properties across all metadata packages....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/remove-metadata...
  3. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using the ZipRootPackage.getZipPackage method Read the ZIP archive properties Loop through ZipPackage.getFiles to extract information about the archived files The following code snippet shows how to get metadata from a ZIP archive. advanced_usage.managing_metadata_for_specific_formats.archive.ZipReadNativeMetadataProperties...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-z...
  4. Working with metadata in AVI files | Documentation

    Reading AVI header properties The Groupdocs.metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-m...
  5. 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); // ....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-ca...
  6. 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 !...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-me...
  7. Get document info | Documentation

    This article shows that how to get meta information of a document....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/get-document-info/
  8. Basic Usage | Documentation

    Quick Start section for Groupdocs.metadata API Manage metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using Groupdocs.metadata API....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/basic-usage/
  9. Export API and Access to IPTC IPTC-IIM and MS P...

    We are pleased to announce another monthly release of GroupDocs.Metatada as Groupdocs.metadata for .NET 1.4.0. New promising features i-e reading IPTC and IPTC-IIM Metadata in JPEG, reading metadata in MS Project document and exporting metadata to Excel, DataSet and CSV file have enhanced the worth of the API. Let’s see in more details what is new in latest version. Groupdocs.metadata for .NET Release 1.4.0 Key FeaturesListed below are the new features introduced in GroupDocs....Metatada as GroupDocs.Metadata for .NET 1.4.0. New promising...new in latest version. GroupDocs.Metadata for .NET Release 1.4...

    blog.groupdocs.com/metadata/read-iptc-iim-ms-pr...
  10. Working with metadata in JPEG images | Document...

    Reading Photoshop metadata properties The Groupdocs.metadata API allows the user to read Adobe Photoshop metadata associated with a JPEG image. For more information on the Photoshop file format and metadata blocks that can be attached to images of different formats please refer to the specification: https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/. The code sample below demonstrates how to extract image resource blocks (building blocks of the Photoshop file format) from a JPEG image....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-m...