This article explains how to use exceptions handling when adding electronic signatures to document with GroupDocs.Signature API....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
This page contains information about deleting documents in the search network....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
This article shows the use of aliases which allows you to reduce the length of search queries in text form....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
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....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
Edit Microsoft Office documents like Word, Excel or PowerPoint or Pdf with help of GroupDocs.Editor for Java without third party software installed....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
Save attachments and embedded files from Pdf, Outlook data file or email...Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...
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 the FlvRootPackage.getHeader method Read the FLV header properties advanced_usage.managing_metadata_for_specific_formats.video.flv.FlvReadHeaderProperties
try (Metadata metadata = new Metadata(Constants.InputFlv)) { FlvRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getVersion()); System.out.println(root.getHeader().hasAudioTags()); System.out.println(root.getHeader().hasVideoTags()); System.out.println(root.getHeader().getTypeFlags()); } Working with XMP metadata GroupDocs....Annotation Product Solution GroupDocs...Product Solution GroupDocs.Comparison Product Solution GroupDocs...