How to merge BMP images using Node.js via Java
Leave feedback
BMP Merger Node.js via Java API
GroupDocs.Merger allows developers to combine multiple BMP documents in the preferred order and save them as a single file.
About BMP File Format
Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap (DIB) file format. This independency serves the purpose of opening the file on multiple platforms such as Microsoft Windows and Mac. The BMP file format can store data as two-dimensional digital images in both monochrome as well as color format with various colour depths.
Download and Configure
You can download GroupDocs.Merger for Node.js via Java from official website Downloads section.
Source BMP images
How to merge BMP files in vertical mode
The following example demonstrates how to merge image files in vertical mode with several lines of nodejs-java code:
Create an instance of Merger class and pass source image file path as a constructor parameter. You may specify absolute or relative file path as per your requirements.
Add another image file to merge with join method and pass instance of ImageJoinOptions class as a method parameter. Repeat this step for other image documents you want to merge.
Call Merger class save method and specify the filename for the merged image file as parameter.