This article explains how to add document to Spreadsheet via OLE with GroupDocs.Merger within your .NET applications....Comparison Product Solution GroupDocs...spreadsheet. For example, the PDF document can be inserted in the...
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); // ....Comparison Product Solution GroupDocs...metadata for specific formats / Images / Working with DICOM metadata...
Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 Images.
The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes).
Load a JPEG2000 Image Get the root metadata package Extract the native metadata package using the Jpeg2000RootPackage.getJpeg2000Package method Read the JPEG2000 comments advanced_usage.managing_metadata_for_specific_formats.Image.jpeg2000.Jpeg2000ReadComments
try (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { Jpeg2000RootPackage root = metadata....Comparison Product Solution GroupDocs...formats / Images / Working with metadata in JPEG2000 images Working...
Get format family details & extra info about files using GroupDocs.Viewer for Python....Comparison Product Solution GroupDocs...collection of folders (see ); PDF documents - a flag that indicates...
This page contains a description of all the properties of the IndexingOptions class...Comparison Product Solution GroupDocs...recognize text in separate image files. The default value is...
This article explains how to access IPTC metadata in a file of any supported format, GroupDocs.Metadata for Java provides the IIptc.getIptcPackage method....Comparison Product Solution GroupDocs...that can be applied to text, images, and other media types. The...
The page describes document annotations of different types and how to add annotations to a document using GroupDocs.Annotation API....Comparison Product Solution GroupDocs...a documents and images of various types - PDF, Microsoft Word...
This article shows how to clear existing text or Image watermarks....Comparison Product Solution GroupDocs...searching and then removing text or image watermarks from a wide range...
Retrieve a list of document attachments from your emails, Outlook data files, archives and Pdf documents with GroupDocs.Viewer for .NET...Comparison Product Solution GroupDocs...Outlook data files, archives, and PDF documents. C# using System ;...
Reading JPEG2000 comments The GroupDocs.Metadata API supports extracting format-specific information from JPEG2000 Images.
The following are the steps to read the JPEG2000 comments (pieces of metadata represented as strings with the length up to 64 kbytes).
Load a JPEG2000 Image Get the root metadata package Extract the native metadata package using Jpeg2000RootPackage.Jpeg2000Package Read the JPEG2000 comments AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Jpeg2000.Jpeg2000ReadComments
using (Metadata metadata = new Metadata(Constants.InputJpeg2000)) { var root = metadata.GetRootPackage(); if (root....Comparison Product Solution GroupDocs...formats / Images / Working with metadata in JPEG2000 images Working...