Sort Score
Result 10 results
Languages All
Labels All
Results 221 - 230 of 28,643 for

groupdocs.metadata

(0.08 sec)
  1. Other | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/other/
  2. Working with EXIF metadata | Documentation

    This article explains how to access EXIF metadata in a file of any supported format, Groupdocs.metadata for Java provides the IExif.getExifPackage method....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-e...
  3. Working with metadata in Diagrams | Documentation

    Groupdocs.metadata for .NET provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-me...
  4. 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...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/load-from-a-lo...
  5. Save a modified file to a specified location | ...

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

    docs.groupdocs.com/metadata/java/save-a-modifie...
  6. Load from a local disk | Documentation

    The following example demonstrates how to load file from local disk....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/load-from-a-loc...
  7. Evaluation Limitations and Licensing | Document...

    Note Groupdocs.metadata also works without the license in trial mode with certain limitations Evaluation version limitations You can easily download Groupdocs.metadata for evaluation. The evaluation download is the same as the purchased download. The evaluation version simply becomes licensed when you add a few lines of code to apply the license. You will face following limitations while using the API without the license. API Limitations Document properties (Pdf, Word, Excel, PowerPoint, Visio, etc) Only first 5 properties can be read XMP API Only first 2 XMP schemes can be read EXIF API GPS IFD and image thumbnail are unavailable Only first 5 properties can be read IPTC API Only first 5 properties can be read Id3v2, Lyrics3, APEv2 tags Only first 5 properties can be read QuickTime atoms Only first 5 atoms can be read File open Open maximum 15 files, otherwise, API throws exception File save Not supported in trial mode Licensing The license file contains details such as the product name, number of developers it is licensed to, subscription expiry date and so on....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/evaluation-lim...
  8. Save a modified file to a stream | Documentation

    This article shows how to save a file to the specified stream...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/save-a-modified...
  9. Working with metadata in MOV Files | Documentation

    Reading MOV format-specific properties The Groupdocs.metadata API supports extracting QuickTime atoms from a MOV video. The atom is the basic data unit in any QuickTime file. Please find more information on QuickTime atoms in the official specification: https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/QTFFPreface/qtffPreface.html The following are the steps to extract QuickTime atoms from a MOV video. Load a MOV video Get the root metadata package Extract the native metadata package using MovRootPackage.MovPackage Read the QuickTime atoms AdvancedUsage....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-me...
  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 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:...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/extracting-com...