merge-images
merge-images copied to clipboard
Need Help: Can I merge two base64 images url using mergeImages function
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:
I believe the image can be any source, so you code would look this:
mergeImages([
base64_1,
base64_2
])
.then(b64 => ...);