Sort Score
Result 10 results
Languages All
Labels All
Results 91 - 100 of 3,963 for

metadata management

(0.06 sec)
  1. Read Metadata from PDF using C#

    Learn how to read Metadata from PDF using C# without requiring extra software installation. Delve into a code sample demonstrating how to read Metadata of PDF using C#....Metadata Product Family GroupDocs.Parser...Family Read Metadata from PDF using C# Metadata in PDF files...

    kb.groupdocs.com/metadata/net/read-metadata-fro...
  2. Working with metadata in Diagrams | Documentation

    GroupDocs.Metadata for .NET provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

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

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

    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....Document Metadata Editor App using GroupDocs.Metadata for .NET...to provide easy ways to manage metadata in various formats. It...

    blog.groupdocs.com/tag/metadata-api/
  5. Working with metadata in JPEG2000 images | Docu...

    Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images. The following are the steps to read the JPEG2000 comments (pieces of Metadata represented as strings with the length up to 64 kbytes). Load a JPEG2000 image Get the root Metadata package Extract the native Metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments using (Metadata Metadata = new Metadata(Constants.InputJpeg2000)) { var root = Metadata.GetRootPackage(); if (root....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  6. Working with metadata in Diagrams | Documentation

    GroupDocs.Metadata for Java provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, 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 diagram and extract some additional file format information. Load a PDF document Extract the root Metadata package Use the getDiagramType method to obtain file format information advanced_usage....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  7. Working with metadata in Note formats | Documen...

    GroupDocs.Metadata for .NET provides functionality that allows working with ONE files created by different versions of Microsoft OneNote. Please see the code samples below for more information. Inspecting Note documents The inspection feature that is introduced in this section doesn’t work with Metadata directly but extracts some useful pieces of information that can be considered as Metadata under some circumstances. For example, you may want to obtain information about pages in a note document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/working-with-me...
  8. 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.getPngPackage Read the PNG Metadata properties advanced_usage.managing_Metadata_for_specific_formats.image.png.PngReadTextChunks try (Metadata Metadata = new Metadata(Constants.InputPng)) { PngRootPackage root = Metadata.getRootPackageGeneric(); for (PngTextChunk chunk : root.getPngPackage().getTextChunks()) { System.out.println(chunk.getKeyword()); System.out.println(chunk.getText()); if (chunk instanceof PngCompressedTextChunk) { PngCompressedTextChunk compressedChunk = (PngCompressedTextChunk) chunk; System....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-m...
  9. Working with metadata in ProjectManagement form...

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

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Working with metadata in ProjectManagement form...

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

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