Sort Score
Result 10 results
Languages All
Labels All
Results 971 - 980 of 29,919 for

groupdocs metadata

(0.16 sec)
  1. Working with OpenType fonts | Documentation

    OpenType is a format for scalable computer fonts. It was built on its predecessor TrueType, retaining TrueType’s basic structure and adding many intricate data structures for prescribing typographic behavior. Note Please find more information on the OpenType format here: https://en.wikipedia.org/wiki/OpenType. Reading OpenType Metadata The Groupdocs.Metadata API supports extracting format-specific information from OpenType font files. The following are the steps to read the header of an OpenType file. Load an OpenType font file Get the root Metadata package Extract the native Metadata package using the OpenTypeRootPackage....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/working-with-o...
  2. Working with OpenType fonts | Documentation

    OpenType is a format for scalable computer fonts. It was built on its predecessor TrueType, retaining TrueType’s basic structure and adding many intricate data structures for prescribing typographic behavior. Note Please find more information on the OpenType format here: https://en.wikipedia.org/wiki/OpenType. Reading OpenType Metadata The Groupdocs.Metadata API supports extracting format-specific information from OpenType font files. The following are the steps to read the header of an OpenType file. Load an OpenType font file Get the root Metadata package Extract the native Metadata package using OpenTypeRootPackage....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-op...
  3. Announcing Hotfix release of GroupDocs Signatur...

    This blog post covers the hotfix introduced in Groupdocs.Signature for .NET 18.9.1. In previous version of the API there was a issue while signing PDF with Metadata Signatures. But now this issue has been fixed, we therefore, recommend you to download the new release and enhance document e-signing experience. Bug Fix Exception is thrown while signing PDF with Metadata Signatures Available Channels and Resources Here are a few channels and resources for you to learn, try and get technical support on Groupdocs....the hotfix introduced in GroupDocs.Signature for .NET 18.9.1...issue while signing PDF with Metadata Signatures. But now this issue...

    blog.groupdocs.com/signature/groupdocs-signatur...
  4. Get document info | Documentation

    This article shows that how to get meta information of a document....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/get-document-info/
  5. Get Document Information using Java

    Learn how to get document information using Java. Improve the efficiency of document management by mastering the technique of how to get file properties using Java....Answers by API GroupDocs.Total Product Family GroupDocs.Conversion...Family GroupDocs.Annotation Product Family GroupDocs.Viewer Product...

    kb.groupdocs.com/metadata/java/get-document-inf...
  6. Other | Documentation

    Open Navigation Close Navigation Products Groupdocs.Total Product Family Groupdocs.Viewer Product Solution Groupdocs.......Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/other/
  7. GroupDocs Newsletter February 2018 – Document M...

    Share this issue: Monthly Newsletter February 2018 .NET Document Viewer APIs for C#, WPF and ASPdotNET Applications Render PDF, Word, Excel, Outlook, HTML and Image formats within Groupdocs.Viewer for .NET is a powerful file viewer API for rendering over 50 documents and image file formats within .NET applications. It rasterizes documents and images both, renders text and converts them to SVG + HTML + CSS – offering a high-fidelity true-text, native document rendering....and Image formats within GroupDocs.Viewer for .NET is a powerful...native document rendering. GroupDocs document viewer APIs are reliable...

    blog.groupdocs.com/total/groupdocs-newsletter-f...
  8. Features Overview | Documentation

    A Java Metadata API can be effectively used in removing, updating and reading Metadata in a variety of formats. It is very effective in removing Metadata from photos. Supporting iptc Metadata, exif Metadata and xmp Metadata....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/features-overv...
  9. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/load-a-password...
  10. Getting known property descriptors | Documentation

    This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package. Load a file to examine Get a collection of PropertyDescriptor instances for any desired Metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors try (Metadata Metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = Metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/getting-known-...