Append and Batch Process Images From Different Folders
Posted: 2015-07-14T13:24:15-07:00
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 for the image 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:
Folder A contains square 100x100 images. I've created a header and footer for the image 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:
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 for hundreds of images?-- HEADER --
--IMAGE--
-- FOOTER --
Code: Select all
convert -append -quality 100 -gravity Center "C:\test\*.jpg" "C:\test\output\img.jpg"