Search found 13 matches

by User
2013-05-20T00:28:45-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

http://img842.imageshack.us/img842/9564/screenshotcrap1.png update new examples with 400 images to be better equated to my 1000 image problem http://www.mediafire.com/download.php?2do6udd3htca232 You can make 10 montage commands to choose the 100 images you need and change the output name as well ...
by User
2013-05-19T18:04:17-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

montage *rect.png -tile 1x4 -geometry +0+0 vert-%d.png That works fine for me on my Mac (unix). I get a different -0,-1,-2 etc for each pair. Sorry I do not know Windows to know if it supports _%d syntax. Perhaps see http://www.imagemagick.org/Usage/windows/ On Windows, perhaps you need to escape ...
by User
2013-05-19T16:43:06-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

http://imageshack.us/a/img844/536/howdoyouverticalimages2.png transcript of part 1 how do you vertically stack 4 images into 1 image? on mass. with 1000 images. on mass. fast. not manually. this example was made manually they're all the same resolution and in the correct order in name and time ...
by User
2013-05-19T15:55:22-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

i think theres a way to solve this with the output file name question how do you make the output filename the same as original but with suffixes? how would this even work? combining multiple images. would it take the filename of the first image used? that way it probably won't write over files ...
by User
2013-05-19T15:33:43-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

-scene is for convert not montage. All it does is set the scened number and not select the image. Sorry I miss that part of your post. i wish convert was for montage. that's alright You would likely have to script a loop to take four images and montage or append, then skip 4 and take the next four ...
by User
2013-05-19T13:36:14-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

see -scene http://www.imagemagick.org/script/command-line-options.php#scene doesn't work C:\Users\User\1\rectvert>montage *vert.png -tile 1x4 -geometry +0+0 -scene 2 5 vert.png montage.exe: unrecognized option `-scene' @ error/montage.c/MontageImageCommand/ 1551. C:\Users\User\1\rectvert>
by User
2013-05-19T06:46:19-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

i got the solution to not have stacked images stack on top of eachother "*.png" are all the files imagemagick montage is looking to convert montage *.png -tile 1x4 -geometry +0+0 output-%d.png so make "*.png" into "*input[or whataver filename].png" montage *input.png -tile 1x4 -geometry +0+0 output ...
by User
2013-05-19T05:34:48-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

User wrote: here's the pictures from that example picture
http://www.mediafire.com/download.php?7mmkgsbe7ro738s
i dont know what i'm doing
that example is crap

they're only numbered so there's no file names to equate to real images

here's a better 1

http://www.mediafire.com/download.php?au638n4vcw8t36c
by User
2013-05-19T03:12:58-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

thanks! this code works montage C:\Users\User\1\test2\*.png -tile 1x4 -geometry +0+0 C:\Users\User\1\test2\multi_%d.png questions how do you get it to name files starting from 1 instead of 0? how do you get it to name files starting from any number instead of 0? how do you get it to only use images ...
by User
2013-05-19T02:13:59-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

advice i got from a chat room I don't know about the command line tools but at least in perlmagick, Montage does exactly that; so probably the same in command line tools ( http://www.imagemagick.org/Usage/montage/#montage ) well the "montage font_*.gif -tile 4x1 -geometry +2+2 multi_%d.gif" example ...
by User
2013-05-19T01:55:10-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

Are you planning on doing this on Windows, Linux or Mac. windows 7 64-bit Do you want to use a batch script, shell script or php. i can not into code What Imagemagick version do you have. ImageMagick-6.8.5-6-Q16-x86-dll.exe I would guess you would need to read in 4 images at a time and do it that ...
by User
2013-05-19T01:46:34-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

Re: how do you vertically stack every 4 images into 1 image?

i got this to work in command prompt after installing imagemagick convert *.png[400x400] -splice 0x10 -background "#ffffff" -append -crop -0+10 output.png but it combines every single image into 1 vertical imag it doesn't vertically stack every 4 into single images with all of the copy pasted from ...
by User
2013-05-19T01:42:30-07:00
Forum: Users
Topic: how do you vertically stack every 4 images into 1 image?
Replies: 23
Views: 13590

how do you vertically stack every 4 images into 1 image?

http://imageshack.us/a/img339/417/howdoyoucombinelotsofim.png how do you vertically stack every 4 images into 1 image? on mass. with 1000 images. on mass. fast. not manually. this example was made manually they're all the same resolution and in the correct order in name and time please explain it ...