Download from GitHub The complete examples package of GroupDocs.Parser is hosted on GitHub. You can either download the ZIP file from here or clone the repository of GitHub using your favorite GitHub client.
In case you download the ZIP file, Extract the folders on your local disk. The Extracted files and folders will look like following image:
Open IntelliJ Idea and import the project to get started with it. Archived project file can also be imported....file, extract the folders on your local disk. The extracted files...
Reading DICOM metadata properties The GroupDocs.Metadata API supports Extracting format-specific information from DICOM images.
The following are the steps to read the native DICOM metadata.
Load a DICOM image Get the root metadata package Extract the native metadata package using DicomRootPackage.DicomPackage Read the DICOM metadata properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Dicom.DicomReadNativeMetadataProperties
using (Metadata metadata = new Metadata(Constants.InputDicom)) { var root = metadata.GetRootPackage(); if (root.DicomPackage != null) { Console.WriteLine(root.DicomPackage.BitsAllocated); Console.WriteLine(root.DicomPackage.LengthValue); Console.WriteLine(root.DicomPackage.DicomFound); Console.WriteLine(root.DicomPackage.HeaderOffset); Console.WriteLine(root.DicomPackage.NumberOfFrames); // ....Metadata API supports extracting format-specific information...the root metadata package Extract the native metadata package...
Reason to use a Document Conversion API The world is becoming a global village and businesses running all over the world interacting and collaborating with hundreds of institutions across the globe, the data gathered from different sources come in a number of different formats. Even the data arranged within an organization could be compiled in different formats depending upon the person or department gathering and maintaining it. You may also find yourself in a situation where the older files being used within the company may no longer be compatible with the company’s needs due to certain changes in company policies and software being used by it....initiatives, organizations must extract more valuable information and...
Document template is set by Template class. It contains template items - fields and tables. Each item has the unique (in the template bounds) name and optional page index - value that represents the index of the page where the template item is located; null if the template item is located on any page.
Template fields The template field is set by TemplateField class with the following constructor:
TemplateField(TemplatePosition position, String name, Integer pageIndex) Parameter Description position Defines the way how to find the field on a page....rectangular area will be extracted as a value: // Create a fixed...order to avoid the excessive extraction of the text. For example:...
In this article you can find how to run examples. We offer multiple solutions on how you can run GroupDocs.Comparison examples, by building your own or using our back-end or front-end examples out-of-the-box....file, extract the folders on your local disk. The extracted files...
This article describes how to run Java digital signature API code examples. We offer multiple solutions on how you can run GroupDocs.Signature examples, by building your own or using our back-end or front-end examples out-of-the-box....file, extract the folders on your local disk. The extracted files...
GroupDocs.Watermark for Node.js via Java is a powerful API for managing watermarks in the various documents formats such as PDF, DOCX/DOC/RTF, PPTX/PPT, XLSX/XLS, JPG, PNG, TIFF, GIF and many others.... Extract information of watermark objects...
Let's learn how to convert PDF to TXT using Node.js. Export PDF to TXT in Node.js with custom parsing methods, handling streams and buffers for accurate text Extraction....with PDF files and need to extract the content in an editable...process is often essential for extracting text from documents without...
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...