This article explains how to sign document with QR-code electronic signatures using extended options with GroupDocs.Signature API....Classification Product Solution Purchase...
The listed articles below explain how to user control how images are saved when a document is saved to Markdown format....Classification Product Solution Purchase...
This article demonstrates how to convert specific document pages by page number using GroupDocs.Markdown for Java API....Classification Product Solution Purchase...
Convert between 170+ formats from GroupDocs.Total for .NET — PDF to Word, Word to PDF, and more — with runnable C# examples and downloadable input and output files....Classification Product Solution Purchase...
Programmatically accept or reject individual detected changes and save the merged result using GroupDocs.Comparison for Python via .NET....Classification Product Solution Purchase...
Complete list of file formats GroupDocs.Comparison for Python via .NET can compare: Word, PDF, Excel, PowerPoint, images, CAD, email, OneNote, source code, and more....Classification Product Solution Purchase...
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....Classification Product Solution Purchase...
This article explains how to detect document file type, obtain document details, retrieve list of existing form fields and added signatures, calculate pages count when processing document file with GroupDocs.Signature....Classification Product Solution Purchase...
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 the AviRootPackage.getHeader method Read the AVI header properties advanced_usage.managing_metadata_for_specific_formats.video.avi.AviReadHeaderProperties
try (Metadata metadata = new Metadata(Constants.InputAvi)) { AviRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getHeader().getAviHeaderFlags()); System.out.println(root.getHeader().getHeight()); System.out.println(root.getHeader().getWidth()); System.out.println(root.getHeader().getTotalFrames()); System.out.println(root.getHeader().getInitialFrames()); System.out.println(root.getHeader().getMaxBytesPerSec()); System....Classification Product Solution Purchase...