1.0.6 • Published 4 years ago
merge-base64-v2 v1.0.6
merge-base64
Merge multiple base64 images into a single image, for merging Buffer, Local or Jimp images please check (https://github.com/preco21/merge-img)
merge-base64 merges given base64 images into a single image in right order.This module Utilizes Jimp and is also based on (https://github.com/preco21/merge-img).

Install
$ npm install merge-base64Usage
const mergeImages = require('merge-base64');
const base64Image = `iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAIAAABbzbuTAAAAAXNSR0IArs4c6QAAAARnQU1B
AACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAAZSURBVDhPY/hPIhjVQAwY1UAMGPoa/v8HALkfLP4gBjPYAAAAAElFTkSuQmCC`;
const mergedImage = await mergeImages([base64Image, base64Image]);API
mergeImages(images, options)
imagesArray of (Base64 Images) - List of images to concat.optionsObject (optional)directionBoolean - Direction of the merged image. If this value istrue, the images will be merged vertically (column). Otherwise, the images will be merged horizontally (row). Default isfalse.colorNumber (hex) - Default background color represented by RGBA hex value. Default is0x00000000.alignString - Aligning of given images. If the images are not all the same size, images will be sorted to largest image. Possible values arestart,centerandend. Default isstart.offsetNumber - Offset in pixels between each image. Default is0.margin(Number | String | Object) - Margin of the result image. IfNumberorStringis passed, it will be considered as standard css shorthand properties (e.g. '40 40 0 10'). AnObjectentry can have following options:topNumber (optional) - Margin on top side of result image. Default is0.rightNumber (optional) - Margin on right side of result image. Default is0.bottomNumber (optional) - Margin on bottom side of result image. Default is0.leftNumber (optional) - Margin on left side of result image. Default is0.
Returns a Promise that resolves to the merged Base64 Image.