Sort Score
Result 10 results
Languages All
Labels All
Results 261 - 270 of 6,185 for

groupdocs.metadata

(0.05 sec)
  1. 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...
  2. Extracting metadata | Documentation

    This article shows how to extract metadata properties from your files in C# .NET solution programmatically with Groupdocs.metadata for .NET...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/extracting-meta...
  3. Remove metadata properties | Documentation

    The easiest way to remove metadata properties from a file is to use corresponding tags that allow you to locate the desired properties across all metadata packages....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/python-net/remove-m...
  4. Working with metadata in AVI files | Documentation

    Reading AVI header properties The Groupdocs.metadata API supports extracting format-specific information from AVI file headers. The following are the steps to read the header of an AVI file. Load an AVI video Get the root metadata package Extract the native metadata package using AviRootPackage.Header Read the AVI header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Avi.AviReadHeaderProperties using (Metadata metadata = new Metadata(Constants.InputAvi)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.AviHeaderFlags); Console.WriteLine(root.Header.Height); Console.WriteLine(root.Header.Width); Console.WriteLine(root.Header.TotalFrames); Console.WriteLine(root.Header.InitialFrames); Console.WriteLine(root.Header.MaxBytesPerSec); Console.WriteLine(root.Header.PaddingGranularity); Console.WriteLine(root.Header.Streams); // ....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-me...
  5. Working with ZIP archives | Documentation

    Get ZIP format metadata The API allows detecting ZIP archives and reading format metadata. The following steps are needed to be followed: Load a ZIP archive Get the root metadata package Extract the native metadata package using ZipRootPackage.ZipPackage Read the ZIP archive properties Loop through ZipPackage.Files to extract information about archived files The following code snippet shows how to get metadata from a ZIP archive. AdvancedUsage.ManagingMetadataForSpecificFormats.Archive.ZipReadNativeMetadataProperties Encoding encoding = Encoding....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/net/working-with-zi...
  6. Handling metadata in WAV files | Documentation

    This article explains about the API supports extracting metadata from WAV files...Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/handling-metad...
  7. Extracting metadata | Documentation

    Using the Groupdocs.metadata search engine you can extract desired metadata properties from files of different types. You don’t need to worry about the exact file format and metadata standards it can deal with. The same code will work for all supported formats in the same way. Most commonly used metadata properties are marked with tags that allow searching them across all supported files in various metadata packages. All tags defined in GroupDocs....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/extracting-met...
  8. Extracting MakerNote metadata | Documentation

    What is MakerNote? MakerNote metadata refers to image information that is written by digital cameras of different manufacturers. Usually, MakerNote metadata properties contain camera settings and some other conditions under which the shot was taken. Most manufacturers store MakerNote properties in a proprietary binary format derived from EXIF. Groupdocs.metadata allows extracting MakerNote metadata saved by the following manufacturers: Canon Nikon Panasonic Sony Read all MakerNote properties in the form of TIFF/EXIF tags Utilizing the GroupDocs....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/extracting-mak...
  9. Working with metadata in ASF files | Documentation

    Reading ASF format-specific properties The Groupdocs.metadata API supports extracting format-specific information from ASF files. The following are the steps to read native ASF metadata. Load an ASF video Get the root metadata package Extract the native metadata package using the AsfRootPackage.getAsfPackage method Read the ASF metadata properties advanced_usage.managing_metadata_for_specific_formats.video.asf.AsfReadNativeMetadataProperties try (Metadata metadata = new Metadata(Constants.InputAsf)) { AsfRootPackage root = metadata.getRootPackageGeneric(); AsfPackage asfPackage = root.getAsfPackage(); // Display basic properties System.out.println(String.format("Creation date: %s", asfPackage....Assembly Product Solution GroupDocs.Metadata Product Solution GroupDocs...Documentation / GroupDocs.Metadata Product Family / GroupDocs.Metadata for...

    docs.groupdocs.com/metadata/java/working-with-m...
  10. Load a file of a specific format | Documentation

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

    docs.groupdocs.com/metadata/net/load-a-file-of-...