Sort Score
Result 10 results
Languages All
Labels All
Results 5,641 - 5,650 of 32,513 for

groupdocs.metadata

(0.16 sec)
  1. Load from a stream | Documentation

    This example demonstrates how to load a file from a stream. advanced_usage.loading_files.LoadFromStream // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc" try (InputStream stream = new FileInputStream(Constants.InputDoc)) { try (Metadata metadata = new Metadata(stream)) { // Extract, edit or remove metadata here } } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples: Groupdocs.metadata for ....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/load-from-a-st...
  2. Working with XMP metadata | Documentation

    This article shows how to access XMP metadata in a file of any supported format....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/nodejs-java/working...
  3. Pricing - Purchase - groupdocs.com

    Groupdocs.metadata Product Family APIs and apps to read, edit, replace and remove metadata of documents, images and o......GroupDocs.Metadata Product Family APIs and apps to read, edit...Products GroupDocs.Metadata for .NET GroupDocs.Metadata for Java...

    purchase.groupdocs.com/pricing/metadata
  4. export

    export,Export Regulations - Purchase - groupdocs.com,Export annotations | Documentation,Export Annotations to TIFF Files,Groupdocs.metadata for .NET 17.2.0 Now... GroupDocs.Metadata for .NET 17.2.0 Now Supports...announce the release of GroupDocs.Metadata for .NET version 17.02...

    search.groupdocs.com/q/Export.html
  5. Extracting Metadata on GroupDocs Blog | Documen...

    Extracting Metadata on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in Extracting Metadata on GroupDocs Blog | Document Automation Solutions for .NET & J......MKV Files using GroupDocs.Metadata for .NET 19.1 Today,...announce the release of GroupDocs.Metadata for .NET 19.1. In this...

    blog.groupdocs.com/tag/extracting-metadata/inde...
  6. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument JavaScript try { var loadOptions = new LoadOptions(); loadOptions.setPassword("123"); const metadata = new Groupdocs.metadata.Metadata("protected.docx", loadOptions); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section. GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  7. Removing metadata | Documentation

    Not all metadata properties extracted from a file are marked with tags. Some file formats and metadata standards allow adding fully custom properties that can’t be properly tagged by the library since their purpose is not clearly defined in the appropriate format/standard specification. In such cases, you can use the name of the property to locate and remove it. The following example demonstrates some advanced usage scenarios of the Groupdocs.metadata search engine allowing to remove metadata properties....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/python-net/removing...
  8. Traverse a whole metadata tree | Documentation

    This article explains that the Groupdocs.metadata represents any loaded file as a tree consisting of metadata properties and nested metadata packages. You can easily iterate through the metadata tree...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/traverse-a-whol...
  9. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document. advanced_usage.loading_files.LoadPasswordProtectedDocument // Specify the password LoadOptions loadOptions = new LoadOptions(); loadOptions.setPassword("123"); // Constants.ProtectedDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx" try (Metadata metadata = new Metadata(Constants.ProtectedDocx, loadOptions)) { // Extract, edit or remove metadata here } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  10. Get supported file formats | Documentation

    The getSupportedFileTypes method of the FileType class is used to obtain a list of supported file types. An example of obtaining a list of supported file types is presented below. Iterable supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType fileType = (FileType)iterator.next(); System.out.println(fileType.getExtension() + " - " + fileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/get-supported-...