To search a keyword in EPUB e-books Search(String) method is used. This method returns the collection of SearchResult objects....extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails...
Reading PhoToshop Metadata properties The GroupDocs Metadata API allows the user To read Adobe PhoToshop metadata associated with a PSD image. For more information on the PhoToshop file format and metadata blocks please refer To the specification: https://www.adobe.com/devnet-apps/phoToshop/fileformatashtml/.
The code sample below demonstrates how To extract image resource blocks (building blocks of the PhoToshop file format) from a PSD image.
Load a PSD file Get the root metadata package Extract the ImageResourcePackage instance and obtain a list of ImageResourceBlock objects Iterate trough the collection of resource blocks AdvancedUsage....edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...
This article gives the knowledge of the API methods which can be used To perform operations about word forms provider interface using Java....search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...
This page describes how To perform indexing of password protected documents.
Indexing using the password dictionary To perform indexing of password protected documents using a password dictionary, you must add passwords for all protected documents To the dictionary before indexing. To add a document password To the dictionary, you must specify the full path To the document as a key and the actual password To the document. For more information about managing the password dictionary see the Document passwords page in the Managing dictionaries section....search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...
This article gives the knowledge of the API methods which can be used To perform operations about Character replacements using Java....search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more...
It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, Pdf, PPT, JPG, PNG, HTML, EML and many more...Try the to convert DOCX, XLSX, PPTX, and more. This topic lists...Specification File ✅ ✅ PDF From Description Load Save PDF Portable Document...
GroupDocs.Metadata for Java provides functionality that allows working with different kinds of diagrams such as VDX, VSDX, VSX, etc. For the full list of supported document formats please refer To Supported document formats.
Detecting the exact type of a document The following sample of code will help you To detect the exact type of a loaded diagram and extract some additional file format information.
Load a Pdf document Extract the root metadata package Use the getDiagramType method To obtain file format information advanced_usage.... a PDF document Extract the root metadata...edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...
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); // ....edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails...