Compare and merge more than two ODS files in C# .NET applications. Retrieve differences summary in content, text & style of ODS files, images and document formats....supports comparing and merging PDF, Word documents, Excel spreadsheets...presentations, Visio diagrams, Outlook emails, HTML, drawings and image file...
This article explains that how To extract plain formatted text from document page....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...
This article explains that how To extract Markdown formatted text from document page in Java....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...
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....metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...
Compare and merge more than two ONE files in C# .NET applications. Retrieve differences summary in content, text & style of ONE files, images and document formats....supports comparing and merging PDF, Word documents, Excel spreadsheets...presentations, Visio diagrams, Outlook emails, HTML, drawings and image file...
Compare and merge more than two PPS files in C# .NET applications. Retrieve differences summary in content, text & style of PPS files, images and document formats....supports comparing and merging PDF, Word documents, Excel spreadsheets...presentations, Visio diagrams, Outlook emails, HTML, drawings and image file...
This article shows you how To view and edit metadata of Pdf, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails, images and more with our free online....metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...
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:...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...
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....metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...