merge-images
merge-images copied to clipboard
How to resize image(s) width and height instead of cropping it
mergeImages([
{src: 'xxxx'},
{src: 'xxxxx'},
{src: 'xxxxxx'}
], {crossOrigin: "Anonymous", width: 2550, height: 3300})
.then( b64 => {
download(b64, "map.png");
});
I want to resize the image instead of cropping it. The first two images have the same size but the last one is the largest. I want to have them all in the same size for a proper position. The current width and height APIs crop from sides instead of resizing.
any news ?
up?
bumpy bump