Search found 2 matches

by andrearastelli
2017-02-17T10:06:33-07:00
Forum: Users
Topic: tile with images that fits into specified witdh with space between them
Replies: 3
Views: 1515

Re: tile with images that fits into specified witdh with space between them

Ok, now the hard part is to tell DOS to do the proper math...

Code: Select all

montage *.png -tile x1 -geometry +%size%+0 output.png
Thanks!!!
by andrearastelli
2017-02-17T09:23:24-07:00
Forum: Users
Topic: tile with images that fits into specified witdh with space between them
Replies: 3
Views: 1515

tile with images that fits into specified witdh with space between them

Hi, I can't find a solution to this problem: I want to merge, horizontally, a bunch of images. And this is easy: montage *.png -tile x1 output.png But my goal would be that those tiled images will dispose automatically to fit a specified output image width (let's say 10000 pixel). And, between each ...