This article demonstrates how you can convert to and from project management formats with GroupDocs.Conversion for Java....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
Convert images to HTML, PDF, PNG, or JPEG using the GroupDocs.Viewer Python API. Learn how to render files effectively....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...
Sometimes you may need to just remove all or clean metadata properties without applying any filters. The best way to do this is to use the Sanitize method....Editor Product Solution GroupDocs...Events Acquisition GroupDocs Documentation / GroupDocs.Metadata Product...
This topic describes how to use the GroupDocs.Viewer Java API to convert images to HTML, PDF, PNG, and JPEG formats....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Viewer Product...
This article demonstrates how you can convert to and from project management formats with GroupDocs.Conversion for Node.js via Java....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Conversion Product...
The articles in this section describe advanced search index creation topics.
Please find how to apply index settings, subscribe events and optimize your work with multiple indexes in single index repository:
More resources GitHub examples You may easily run the code from Documentation articles and see the features in action in our GitHub examples:
GroupDocs.Search for .NET examples
GroupDocs.Search for Java examples
Free online Document search App Along with full featured ....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...
The articles in this section describe advanced search index creation topics.
Please find how to apply index settings, subscribe events and optimize your work with multiple indexes in single index repository:
More resources GitHub examples You may easily run the code from Documentation articles and see the features in action in our GitHub examples:
GroupDocs.Search for .NET examples
GroupDocs.Search for Java examples
Free online Document search App Along with full featured ....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Search Product...
Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers.
The following are the steps to read the header of a BMP file.
Load a BMP image Get the root metadata package Extract the native metadata package using BmpRootPackage.BmpHeader Read the BMP header properties AdvancedUsage.ManagingMetadataForSpecificFormats.Image.Bmp.BmpReadHeaderProperties
using (Metadata metadata = new Metadata(Constants.InputBmp)) { var root = metadata.GetRootPackage(); Console.WriteLine(root.BmpHeader.BitsPerPixel); Console.WriteLine(root.BmpHeader.ColorsImportant); Console.WriteLine(root.BmpHeader.HeaderSize); Console.WriteLine(root.BmpHeader.ImageSize); Console.WriteLine(root.BmpHeader.Planes); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...
Note This feature is supported by version 20.3 or greater. Note The code uses some of the objects defined in The Business Layer. You can set checkbox values to either checked or unchecked in your reports dynamically by taking the following steps:
Add a checkbox content control to your template at a place where you want it to appear in a result Document. By editing content control properties, add a check tag to the title of the checkbox content control using the following syntax....Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Assembly Product...
Reading BMP header properties The GroupDocs.Metadata API supports extracting format-specific information from BMP file headers.
The following are the steps to read the header of a BMP file.
Load a BMP image Get the root metadata package Extract the native metadata package using the BmpRootPackage.getBmpHeader method Read the BMP header properties advanced_usage.managing_metadata_for_specific_formats.image.bmp.BmpReadHeaderProperties
try (Metadata metadata = new Metadata(Constants.InputBmp)) { BmpRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getBmpHeader().getBitsPerPixel()); System.out.println(root.getBmpHeader().getColorsImportant()); System.out.println(root.getBmpHeader().getHeaderSize()); System.out.println(root.getBmpHeader().getImageSize()); System.out.println(root.getBmpHeader().getPlanes()); } More resources GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Editor Product Solution GroupDocs...Acquisition Ask AI GroupDocs Documentation / GroupDocs.Metadata Product...