This article shows how To add metadata properties which is the most sophisticated feature of the GroupDocs.Metadata Java search engine...metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...
XPS Viewer online. This is a free cross-platform application! It lets you open XPS files without installing any additional software....PDF Product Solution Aspose.Cells...Cells Product Solution Aspose.Email Product Solution Aspose.Slides...
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); // ....metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images...
To extract metadata from Microsoft Office Excel spreadsheets getMetadata method is used. This method allows To extract the following metadata:
Name Description title The title of the spreadsheet. subject The subject of the spreadsheet. keywords The keyword of the spreadsheet. comments The comments of the spreadsheet. content-status The content status of the spreadsheet. category The category of the spreadsheet. company The company of the spreadsheet. manager The manager of the spreadsheet....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...
This article explains that how To extract metadata from Microsoft Office Excel (.xls, .xlsx) spreadsheets....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...
To extract text from EPUB e-books getText and getText(pageIndex) methods is used. These methods allow To extract text from the entire document or a text from the selected page. Raw mode is not supported for EPUB....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...
To extract a text from Microsoft Office Word documents getText and getText(int) methods are used. These methods allow To extract a text from the entire document or a text from the selected page. TexToptions parameter is ignored for Microsoft Office Words documents.
Here are the steps To extract a text from Microsoft Office Word document:
Instantiate Parser object for the initial document; Call getText method and obtain TextReader object; Read a text from reader....data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more...