Sort Score
Result 10 results
Languages All
Labels All
Results 751 - 760 of 3,755 for

image metadata

(0.17 sec)
  1. Load a file of a specific format | GroupDocs

    This example demonstrates how to load a file of some particular format. advanced_usage.loading_files.LoadingFileOfSpecificFormat // Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata Metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = Metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit Metadata System....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-a-file-of...
  2. Working with interpreted values | GroupDocs

    Understand and extract human-readable (interpreted) values for Metadata properties using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/working-...
  3. Obtain document form fields and signatures info...

    This article shows how to get information about electronic signatures in the document and its form fields with GroupDocs.Signature API....Metadata Product Solution GroupDocs...Text}" ); } // display document Image signatures information Console...

    docs.groupdocs.com/signature/net/obtain-documen...
  4. GroupDocs.Parser Product Family

    Find answers about extracting text, Images, and Metadata of different files using code on any platform....Metadata Product Family GroupDocs.Search...C# Extract Images from MSG using C# Extract Images from PPTX using...

    kb.groupdocs.com/parser/
  5. Load from a stream | GroupDocs

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

    docs.groupdocs.com/metadata/java/load-from-a-st...
  6. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...the ability to set opacity to image signatures in supported document...announce the release of GroupDocs.Metadata for .NET version 17.3.0. There...

    blog.groupdocs.com/groupdocs.blog/page/78/
  7. GroupDocs Blog

    GroupDocs Blog - GroupDocs Blog | Document Automation Solutions for .NET & Java Developers...document type format Provide JPEG image quality setting Implement configuration...GroupDocs.Metatada as GroupDocs.Metadata for .NET 1.4.0. New promising...

    blog.groupdocs.com/groupdocs.blog/page/88/
  8. Features Overview | GroupDocs

    The main capabilities of GroupDocs.Comparison for Python via .NET — change detection, accept/reject, document information extraction, summary reports, and multi-document comparison....Metadata Product Solution GroupDocs...full comparison, query basic metadata: file type, size, and page...

    docs.groupdocs.com/comparison/python-net/gettin...
  9. Getting known property descriptors | GroupDocs

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

    docs.groupdocs.com/metadata/java/getting-known-...
  10. Load a password-protected document | GroupDocs

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

    docs.groupdocs.com/metadata/nodejs-java/load-a-...