merge-images icon indicating copy to clipboard operation
merge-images copied to clipboard

Need Help: Can I merge two base64 images url using mergeImages function

Open adityavyas611 opened this issue 4 years ago • 1 comments

How to merge base64 images url and download the generated base64 image URL?

I am sending too base64 image value from react to node, will it automatically take the height, width and generate the merged image like the image below:

183

adityavyas611 avatar Jul 21 '20 21:07 adityavyas611

I believe the image can be any source, so you code would look this:

mergeImages([
  base64_1,
  base64_2
])
  .then(b64 => ...);

BumpyBill avatar Aug 04 '20 04:08 BumpyBill