查找API的答案 GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotation Product Family Group......Comparison Product Family GroupDocs...can also convert PDF to other file formats e.g. WordML, DOC, RTF...
Pronađite odgovore pomoću API-ja GroupDocs.Total Product Family GroupDocs.Conversion Product Family GroupDocs.Annotat......Comparison Product Family GroupDocs...can also convert PDF to other file formats e.g. WordML, DOC, RTF...
This page contains release notes for GroupDocs.Assembly for Java 18.1. Major Features Extended support of dynamic chart axis title setting for more File formats.
Full List of Features Covering all Changes in this Release Key Summary Category ASSEMBLYNET-58 Support dynamic chart axis title setting for Spreadsheet documents Feature ASSEMBLYNET-59 Support dynamic chart axis title setting for Presentation documents Feature ASSEMBLYNET-60 Support dynamic chart axis title setting for emails with HTML and RTF bodies Feature Public API and Backward Incompatible Changes This section lists public API changes that were introduced in GroupDocs....Comparison Product Solution GroupDocs...axis title setting for more file formats. Full List of Features...
Note This page contains release notes for GroupDocs.Parser for .NET 20.8 Full List of Issues Covering all Changes in this Release Key Summary Category PARSERNET-1176 Implement the ability to extract images from .chm Files New feature PARSERNET-1177 Implement the ability to extract images from .epub Files New feature PARSERNET-1178 Implement the ability to extract images from .fb2 Files New feature PARSERNET-1179 Implement the ability to extract images from .html Files New feature PARSERNET-1580 Implement FileType....Comparison Product Solution GroupDocs...to extract images from .chm files New feature PARSERNET-1177 Implement...
This page contains release notes for GroupDocs.Assembly for .NET 18.1. Major Features Extended support of dynamic chart axis title setting for more File formats.
Full List of Features Covering all Changes in this Release Key Summary Category ASSEMBLYNET-58 Support dynamic chart axis title setting for Spreadsheet documents Feature ASSEMBLYNET-59 Support dynamic chart axis title setting for Presentation documents Feature ASSEMBLYNET-60 Support dynamic chart axis title setting for emails with HTML and RTF bodies Feature Public API and Backward Incompatible Changes This section lists public API changes that were introduced in GroupDocs....Comparison Product Solution GroupDocs...axis title setting for more file formats. Full List of Features...
This article explains how to add document to Spreadsheet via OLE with GroupDocs.Merger within your .Java applications....Comparison Product Solution GroupDocs...Initialise class with embedded file path and page number; Instantiate...
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:...Comparison Product Solution GroupDocs...format-specific information from BMP file headers. The following are the...
Note This page contains release notes for GroupDocs.Viewer for .NET 17.8.0 Major Features There are 9 new features and 11 improvements and fixes in this regular monthly release. The most notable are:
Responsive output for rendering into HTML Setting to ignore HTML Resource Prefix in resources Implemented feature to show comments when rendering Spreadsheet documents as HTML Implemented feature to show comments when rendering Presentation documents Implemented feature to ignore empty rows when rendering Spreadsheet documents Added DNG image File format support Added Microsoft Visio VSTM, VSSM and VSDM File formats support Full List of Issues Covering all Changes in this Release Key Summary Category VIEWERNET-1322 Export styles that make page responsive when resources are not embedded New Feature VIEWERNET-1315 Implement a setting for ignoring HTML Resource Prefix in resources New Feature VIEWERNET-1307 Show comments when rendering Spreadsheet documents as HTML New Feature VIEWERNET-1305 Ignore empty rows when rendering Spreadsheet documents New Feature VIEWERNET-1292 Add DNG image File format support New Feature VIEWERNET-1260 Add VSTM File format support New Feature VIEWERNET-1259 Add VSSM File format support New Feature VIEWERNET-1258 Add VSDM File format support New Feature VIEWERNET-1191 Show comments when rendering Presentation documents New Feature VIEWERNET-1321 Improve setting prefix for fonts when rendering Text document as HTML Improvement VIEWERNET-1314 Use single naming convention for HTML resources Improvement VIEWERNET-1306 Use ICacheDataHandler instead of IFileDataStore Improvement VIEWERNET-1296 Implement responsive output for rendering into HTML Improvement VIEWERNET-1303 Exception when rendering Excel document into HTML and image Bug VIEWERNET-1297 Exception when rendering email message containing ....Comparison Product Solution GroupDocs...Spreadsheet documents Added DNG image file format support Added Microsoft...
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:...Comparison Product Solution GroupDocs...format-specific information from BMP file headers. The following are the...