The page describes how to add button component to a document using GroupDocs.Annotation for Java....The page describes how to add button component to a document using GroupDocs.Annotation for Java.
This article explains how to replace missing font when rendering documents with GroupDocs.Viewer within your .NET applications....This article explains how to replace missing font when rendering documents with GroupDocs.Viewer within your .NET applications.
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); // ....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<DicomRootPackage>(); 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); // .
This section explains how to load document from URL with GroupDocs.Signature API....This section explains how to load document from URL with GroupDocs.Signature API.
This article explains how to handle specific exceptions when verifying document electronic signatures with GroupDocs.Signature API.... This article explains how to handle specific exceptions when verifying document electronic signatures with GroupDocs.Signature API.
This section contains articles with explanation how to create QR-Code electronic signatures and embed into QR-Code custom data object with its serialization and encryption. The examples show how to customize object serialization and encryption....This section contains articles with explanation how to create QR-Code electronic signatures and embed into QR-Code custom data object with its serialization and encryption. The examples show how to customize object serialization and encryption.
Easily generate QR Code in C# by following this guide and review the process to sign PDF document with QR Code in C# without a third-party tool....Easily generate QR Code in C# by following this guide and review the process to sign PDF document with QR Code in C# without a third-party tool.
This concise tutorial will guide you how to add reply to annotation in PDF using Java. Also, it provides working code example to reply annotation in PDF using Java....This concise tutorial will guide you how to add reply to annotation in PDF using Java. Also, it provides working code example to reply annotation in PDF using Java.
GroupDocs.Conversion for .NET is an advanced document conversion API developed to convert files of different formats from within C# applications....GroupDocs.Conversion for .NET is an advanced document conversion API developed to convert files of different formats from within C# applications.