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?".
I'm posting my imagemagick problem after a long days of research and many testing...
Could not succeed in making what I want... And really I need your help... snif....
So here's what I want to do with a couple of images: I want to create an image with 2 lines of 3 images and a line with one image that is centered in the bottom of all (want to do it with just one command Line in... guess what... wait for it.... Windows :p)
Here's the command line I'm using... (Yeah I know I'm a newbie.... but trying to make something cool )
I do not believe that you can use parenthesis processing in montage, only convert. But the following seems to work for me as a test. Use null: images as place holders. Use -geometry to do the resize. Replace each of my rose: test images with your real 7 images and your desired resize. But run these commands and see if they work the way you want.
convert ^
( rose: rose: rose: -resize 200x200 -bordercolor red -border 5 +append ) ^
( rose: rose: rose: -resize 200x200 -bordercolor red -border 5 +append ) ^
-append ^
rose: -bordercolor red -border 5 -gravity south -background black -append ^
rose_result.png
If either of these two methods does not work to make what you want, then upload your images to some free hosting service such as dropbox.com and put the links here. Then explain what you need and why it is not working and I or someone else can probably fix it.