Sort Score
Result 10 results
Languages All
Labels All
Results 211 - 220 of 1,525 for

metadata management

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

    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 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...
  3. Save a modified file to a stream | GroupDocs

    This article shows how to save a file to the specified stream 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/save-a-m...
  4. Save a modified file to the original source | G...

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

    docs.groupdocs.com/metadata/java/save-a-modifie...
  5. Extracting property values | GroupDocs

    Learn common ways to read Metadata property values and handle types in GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Python...

    docs.groupdocs.com/metadata/python-net/extracti...
  6. Extracting Common Image Information | GroupDocs

    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 FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.ImageReadFileFormatProperties using (Metadata Metadata = new Metadata(Constants.InputPng)) { var root = Metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } 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 .NET...

    docs.groupdocs.com/metadata/net/extracting-comm...
  7. Load from a local disk | GroupDocs

    Learn how to open a file from local disk 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/load-fro...
  8. Load from a stream | GroupDocs

    This example demonstrates how to load a file from a stream 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/load-fro...
  9. Working with TORRENT files | GroupDocs

    In the BitTorrent file distribution system, a torrent file or METAINFO is a computer file that contains Metadata about files and folders to be distributed, and usually also a list of the network locations of trackers, which are computers that help participants in the system find each other and form efficient distribution groups called swarms. A torrent file does not contain the content to be distributed; it only contains information about those files, such as their names, sizes, folder structure, and cryptographic hash values for verifying file integrity....Metadata Product Solution GroupDocs...GroupDocs.Metadata Product Family / GroupDocs.Metadata for Java...

    docs.groupdocs.com/metadata/java/working-with-t...
  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-...