Sort Score
Result 10 results
Languages All
Labels All
Results 201 - 210 of 1,324 for

metadata management

(0.04 sec)
  1. Load a file of a specific format | Documentation

    This example demonstrates how to load a file of some particular format....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/load-a-file-of-...
  2. 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:...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/load-a-...
  3. 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:...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  4. Save a modified file to the original source | D...

    This article shows how to save the modified content to the underlying source....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/save-a-modified...
  5. Handle EXIF Data of JPEG, PNG, TIFF & WebP Imag...

    Manipulate EXIF Metadata of images in Java. Extract, update, add or remove EXIF data of JPG/JPEG, PNG, WebP, or other images programmatically using Java API....data includes the tagging and metadata information about the captured...captured image file. Metadata may contain information like camera...

    blog.groupdocs.com/metadata/handle-exif-data-of...
  6. Load a file of a specific format | Documentation

    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...
  7. 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 JavaScript const Metadata = new groupdocs.Metadata.Metadata("input.doc"); var root = Metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iMetadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/getting...
  8. Get document info | Documentation

    GroupDocs.Metadata allows users to get meta information of a document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/get-document-i...
  9. Manage XMP and EXIF Data of HEIF HEIC Images us...

    Manage XMP and EXIF data of HEIF, HEIC images using C#. Read, update, remove EXIF and XMP data using Metadata automation API within .NET applications....XML-based metadata standard, that can store metadata properties...standard and defines how to store metadata properties in the most common...

    blog.groupdocs.com/metadata/manage-xmp-and-exif...
  10. Load a password-protected document | Documentation

    This example demonstrates how to load a password-protected document....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/load-a-password...