I have several hundreds of images in one folder (Folder A) that need to be merged with 2 files in another folder (Folder B).
Folder A contains square 100x100 images. I've created a header and footer that are 100px wide that are in Folder B.
I need to merge the header and footer in Folder B with the square images in Folder A.
So the end result should be:
-- HEADER --
-IMAGE-
-- FOOTER --
I did a test for one image (see command below) where the header, image, and footer existed in the same folder, but how do I batch process it given my situation above?
convert -append -quality 100 -gravity Center "C:\test\*.jpg" "C:\test\output\img.jpg"
The other option may be to have one single file with a mask for the image so it gets inserted between the header and footer?