This article explains Document formats and format families supported by GroupDocs.Editor for .NET and how to operate them in .NET code....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Editor Product...
This article explains how to search for embedded electronic signatures with custom encryption in Document metadata. This topic contains example of custom encryption, class definition and search for encrypted objects in the Document metadata with GroupDocs.Signature....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Signature Product...
Learn how to compare Word Documents while respecting Track Changes using GroupDocs.Comparison for Python via .NET....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Comparison Product...
Free conversion API version for Node.js developers is available to evaluate the API which will be similar to licensed version but with few limitations....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.
Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors
try (Metadata metadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...
Detecting the GIF version The following sample of code will help you to detect the version of a loaded GIF image and extract some additional file format information.
Load a GIF image Extract the root metadata package Use the FileType property to obtain file format information AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Gif.GifReadFileFormatProperties
using (Metadata metadata = new Metadata(Constants.InputGif)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.FileType.FileFormat); Console.WriteLine(root.FileType.Version); Console.WriteLine(root.FileType.ByteOrder); Console.WriteLine(root.FileType.MimeType); Console.WriteLine(root.FileType.Extension); Console.WriteLine(root.FileType.Width); Console.WriteLine(root.FileType.Height); } Working with XMP Metadata GroupDocs....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...
Learn how to convert a XML Document to PDF using XSL-FO with GroupDocs.Conversion for .NET....Classification Product Solution Purchase...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
How to install and run GroupDocs.Markdown for Python via .NET on Linux, macOS, and in Docker containers....Classification Product Solution Purchase...Events Acquisition GroupDocs Documentation / GroupDocs.Markdown / GroupDocs...
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...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.
Load a file to examine Get a collection of PropertyDescriptor instances for any desired metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors
JavaScript const metadata = new groupdocs.metadata.Metadata("input.doc"); var root = metadata.getRootPackageGeneric(); var descriptors = root.getDocumentProperties().getKnowPropertyDescriptors(); for(var i=0;iClassification Product Solution Purchase...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...