Java API to create and Annotate popular annotation types from CAD, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
Java API to create and Annotate popular annotation types from HTM, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
Java API to create and Annotate popular annotation types from XLSB, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
Java API to create and Annotate popular annotation types from EMF, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
Java API to create and Annotate popular annotation types from EMLX, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
Java API to create and Annotate popular annotation types from PNG, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
Java API to create and Annotate popular annotation types from DWG, images, drawings and document file formats....adding, editing, deleting, extracting and exporting annotations...new notes, edit annotations, extract comments, annotations, and...
All Classes Packages com.groupdocs.metadata com.groupdocs.metadata.core com.groupdocs.metadata.export com.groupdocs.m......metadata class for all packages extracted from a Matroska video. MatroskaContentType...Represents a single font extracted from a file. OpenTypeIsoEncoding...
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....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...
Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information.
Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties
using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); 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); } Working with XMP Metadata GroupDocs....of a loaded GIF image and extract some additional file format...format information. a GIF image Extract the root metadata package Use...