Page 1 of 1

newbie, need help to create a composed image (atlas)

Posted: 2014-03-22T08:40:19-07:00
by pioj
Hi. I want to generate a big image composed of a few smaller ones. I'm using the commandline tools (montage,convert...)

What's the best way to achieve this result?

Image


It's a common distribution of an Atlas Texture for a 3d model. I need to create a batch of thousands of them in my home server.
I read the documentation and made some progress but I can't achieve the desired result.

Help, please (and thx for the patience).

Re: newbie, need help to create a composed image (atlas)

Posted: 2014-03-22T09:01:12-07:00
by dlemstra
I am not sure if this is the most efficient way to do this but you could do the following:

Code: Select all

convert Img-1.jpg ( Img-2.jpg ( Img-3.jpg Img-4.jpg +append ) -append ) +append atlas.jpg

Re: newbie, need help to create a composed image (atlas)

Posted: 2014-03-22T09:18:47-07:00
by pioj
Thx so much! Works perfectly! :)