Sort Score
Result 10 results
Languages All
Labels All
Results 951 - 960 of 30,927 for

groupdocs metadata

(0.05 sec)
  1. Load from a local disk | Documentation

    The following example demonstrates how to load file from local disk....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  2. Load from a local disk | Documentation

    The following example demonstrates how to load a file from a local disk. advanced_usage.loading_files.LoadFromLocalDisk // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one" try (Metadata Metadata = new Metadata(Constants.InputOne)) { // 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 .NET examples Groupdocs.Metadata for Java examples...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  3. GroupDocs.Metadata Overview | Documentation

    What is Groupdocs.Metadata? Groupdocs.Metadata for Java is a full featured class library which allows users to read and edit Metadata associated with various document, image, audio, video and many other formats. It works with most notable Metadata standards: XMP, EXIF, IPTC, Image Resource Blocks, ID3 and format-specific Metadata properties. The Metadata API is very flexible and easy to operate with. It provides extended capabilities allowing working with Metadata in a unified way regardless of the file format....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/groupdocs-meta...
  4. Basic Usage | Documentation

    Quick Start section for Groupdocs.Metadata API Manage Metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code. Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using Groupdocs.Metadata API....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/python-net/basic-us...
  5. Working with saved Emails | Documentation

    Groupdocs.Metadata for .NET provides functionality that allows handling the most popular email message formats: EML and MSG. The following are some commonly used scenarios of working with the message content and Metadata. Reading EML message Metadata The EML message format is used by many email clients including Novell GroupWise, Microsoft Outlook Express, Lotus notes, Windows Mail, Mozilla Thunderbird, and Postbox. The files contain the email contents as plain text in MIME format, containing the email header and body, including attachments in one or more of several formats....Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/working-with-sa...
  6. Read Thumbnails in Document Formats Using Group...

    Team Groupdocs is really pleased to announce the release of Groupdocs.Metadata for .NET version 17.3.0. There are four enhancements and one new feature introduced in this regular monthly release. Groupdocs.Metadata for .NET now allows its users to read thumbnails in supported document formats. The API has been enhanced to update and remove EXIF Metadata faster. Not only this, the API has also been improved to load only the existing Metadata keys in PDF class beside adding the ability to lazy load Document info property for Document formats....Team GroupDocs is really pleased to announce the release of GroupDocs...GroupDocs.Metadata for .NET version 17.3.0 . There are four enhancements...

    blog.groupdocs.com/metadata/read-thumbnails-doc...
  7. Does the GroupDocs.Total license work with indi...

    I see similar questions and the answer is yes. E.g. this post: License Groupdocs - Free Support Forum - Groupdocs.com However, I’ve noticed that it works in most cases, but for Groupdocs.Metadata.NETFramework, I’m get…...the GroupDocs.Total license work with individual GroupDocs packages...packages? GroupDocs.Total Product Family dotnet jarrodwee March...

    forum.groupdocs.com/t/does-the-groupdocs-total-...
  8. 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:...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/java/load-a-passwor...
  9. GroupDocs.Metadata for .NET 1.5.0 Released with...

    At Groupdocs, we are always keen to improve our products and enhance user experience. Hence, we are excited to announce Groupdocs.Metadata for .NET 1.5.0. The latest version of our Metadata API provides many new features. Please see below for the list of features. Groupdocs.Metadata for .NET 1.5.0 – Features In this update new abilities for JP2/JPEG2000, JPEG and MS Visio File Formats have been added: Read & write XMP Metadata of JP2 Format Detect bar-codes in JPEG Format Save changes into original document source (doc)....At GroupDocs, we are always keen to improve our products and...are excited to announce GroupDocs.Metadata for .NET 1.5.0. The latest...

    blog.groupdocs.com/metadata/groupdocs-metadata-...
  10. 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 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:...Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product...Solution GroupDocs.Annotation Product Solution GroupDocs.Conversion...

    docs.groupdocs.com/metadata/net/extracting-comm...