tile with images that fits into specified witdh with space between them
Posted: 2017-02-17T09:23:24-07:00
Hi,
I can't find a solution to this problem:
I want to merge, horizontally, a bunch of images.
And this is easy:
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 image, a transparent space needs to be leaved if the total width of all the images one next to the other is lower that the width of my specified output.
Do you think that this is something that can be done just by using ImageMagick?
Thanks
EDIT:
I've found this example:
*the command is adapted to work in a DOS environment
Instead of generating a circe distribution of images.. maybe this is the way to obtain what I need...
I can't find a solution to this problem:
I want to merge, horizontally, a bunch of images.
And this is easy:
Code: Select all
montage *.png -tile x1 output.png
And, between each image, a transparent space needs to be leaved if the total width of all the images one next to the other is lower that the width of my specified output.
Do you think that this is something that can be done just by using ImageMagick?
Thanks
EDIT:
I've found this example:
Code: Select all
convert * -set page "+%%[fx:1200*cos((t/n)*2*pi)]+%%[fx:1200*sin((t/n)*2*pi)]" -layers merge +repage output.png
Instead of generating a circe distribution of images.. maybe this is the way to obtain what I need...