Sort Score
Result 10 results
Languages All
Labels All
Results 331 - 340 of 16,724 for

metadata management

(0.05 sec)
  1. 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-...
  2. 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...
  3. Save a modified file to a specified location | ...

    This article shows how to save a document to a specified location on a local disk...Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/save-a-modified...
  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. Handling the APEv2 tag | Documentation

    This article explains how to handle APEv2 tag....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for .NET...

    docs.groupdocs.com/metadata/net/handling-the-ap...
  6. Working with interpreted values | Documentation

    This article contains a good example of numeric flag or enumeration in Node.js via Java....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Node...

    docs.groupdocs.com/metadata/nodejs-java/working...
  7. 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...
  8. MetadataPackage - GroupDocs.Metadata for Java -...

    All Classes Packages com.groupdocs.Metadata com.groupdocs.Metadata.core com.groupdocs.Metadata.export com.groupdocs.m......metadata com.groupdocs.metadata.core com.groupdocs...groupdocs.metadata.export com.groupdocs.metadata.licensing com.groupdocs...

    apireference.groupdocs.com/metadata/java/com.gr...
  9. Extracting common image information | Documenta...

    For all supported image formats the GroupDocs.Metadata API allows extracting common image properties such as width and height, MIME type, byte order, etc. Please see the code snippet below for more information on the feature. Load an image Extract the root Metadata package Use the getImageType method to obtain file format information advanced_usage.managing_Metadata_for_specific_formats.image.ImageReadFileFormatProperties try (Metadata Metadata = new Metadata(Constants.InputPng)) { ImageRootPackage root = Metadata.getRootPackageGeneric(); System.out.println(root.getImageType().getFileFormat()); System.out.println(root.getImageType().getByteOrder()); System.out.println(root.getImageType().getMimeType()); System.out.println(root.getImageType().getExtension()); System.out.println(root.getImageType().getWidth()); System.out.println(root.getImageType().getHeight()); } 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/extracting-com...
  10. 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...