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

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
pioj
Posts: 2
Joined: 2014-03-22T08:12:50-07:00
Authentication code: 6789

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

Post 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).
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

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

Post 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
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
pioj
Posts: 2
Joined: 2014-03-22T08:12:50-07:00
Authentication code: 6789

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

Post by pioj »

Thx so much! Works perfectly! :)
Post Reply