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
Code: Select all
montage *.png -tile 1x4 -geometry +0+0 output-%d.png
so make "*.png" into "*input[or whataver filename].png"
Code: Select all
montage *input.png -tile 1x4 -geometry +0+0 output-%d.png
so there's a difference between the input and the output files
so it won't read the output files and output them again
new problem
everytime new images are outputted they overwrite the old images
how do you change the starting number of the output file?
or the solution can be from the answer to a question i didn't ask like before