This article shows that how synonym search allows you to find not only the words specified in the search query, but also the synonyms, words that means the same...."answer" , options ); More resources GitHub examples You may easily...
This article shows the use of aliases which allows you to reduce the length of search queries in text form.... search ( query ); More resources GitHub examples You may easily...
Reading FLV header properties The GroupDocs.Metadata API supports extracting format-specific information from the FLV file header.
The following are the steps to read the header of an FLV file.
Load an FLV video Get the root metadata package Extract the native metadata package using FlvRootPackage.Header Read the FLV header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Video.Flv.FlvReadHeaderProperties
using (Metadata metadata = new Metadata(Constants.InputFlv)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.Header.Version); Console.WriteLine(root.Header.HasAudioTags); Console.WriteLine(root.Header.HasVideoTags); Console.WriteLine(root.Header.TypeFlags); } Working with XMP metadata GroupDocs.... More resources GitHub examples You may easily...
Learn common ways to read metadata property values and handle types in GroupDocs.Metadata for Python via .NET.... More resources GitHub examples You may easily...
Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 images.
The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes).
Load a JPEG2000 image Get the root metadata package Extract the native metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments
using (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { var root = metadata.GetRootPackage(); if (root.... More resources GitHub examples You may easily...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.... More resources GitHub examples You may easily...
This article explains how to save signed image with various image formats by GroupDocs.Signature API....signOptions , saveOptions ); More resources GitHub Examples You may easily...
This section contains articles with explanation how to create Metadata electronic signatures and embed into metadata custom object with its serialization and encryption. The examples show how to customize object serialization and encryption....details of these features More resources GitHub Examples You may easily...
This article explains how to search for Form Fields signatures with GroupDocs.Signature API.... getValue ()); } More resources Advanced Usage Topics To learn...