merge-base64
v1.1.4
Published
Merge multiple images into a single image
Downloads
5,486
Readme
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-base64
Usage
const mergeImages = require('merge-base64');
const base64Image = `iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAIAAABbzbuTAAAAAXNSR0IArs4c6QAAAARnQU1B
AACxjwv8YQUAAAAJcEhZcwAAEnQAABJ0Ad5mH3gAAAAZSURBVDhPY/hPIhjVQAwY1UAMGPoa/v8HALkfLP4gBjPYAAAAAElFTkSuQmCC`;
const mergedImage = await mergeImages([base64Image, base64Image]);
API
mergeImages(images[, options])
images
Array of (Base64 Images) - List of images to concat.options
Object (optional)direction
Boolean - 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
.color
Number | String (hex) - Default background color represented by RGBA hex value. Default is0x00000000
.align
String - Aligning of given images. If the images are not all the same size, images will be sorted to largest image. Possible values arestart
,center
andend
. Default isstart
.offset
Number - Offset in pixels between each image. Default is0
.margin
(Number | String | Object) - Margin of the result image. IfNumber
orString
is passed, it will be considered as standard css shorthand properties (e.g. '40 40 0 10'). AnObject
entry can have following options:top
Number (optional) - Margin on top side of result image. Default is0
.right
Number (optional) - Margin on right side of result image. Default is0
.bottom
Number (optional) - Margin on bottom side of result image. Default is0
.left
Number (optional) - Margin on left side of result image. Default is0
.
Returns a Promise
that resolves to the merged Base64 Image.