05-14-2020, 05:08 PM
Anyway, your solution is very good.
I create a .bat using a slightly modified version:
for /L %%i in (1,1,100) do magick composite -gravity center *%%i.png bg.png *%%i.png
...it automatically transforms 100 pictures (named picture1, picture2, etc., the * is for the word "picture", and the %%i for the number - use only %i if using the command prompt instead of a .bat), into news pics with the wanted background.
After that I just had to do the same with my "topping" pic, as you said:
for /L %%i in (1,1,100) do magick composite -gravity center topping.png *%%i.png *%%i.png
And I got my pics with the "top" layer ! It was like making a cake^^
I lost two layers in the process, but it was so much a timesaver, it worth it...! Thank you very much rich2005 !
I create a .bat using a slightly modified version:
for /L %%i in (1,1,100) do magick composite -gravity center *%%i.png bg.png *%%i.png
...it automatically transforms 100 pictures (named picture1, picture2, etc., the * is for the word "picture", and the %%i for the number - use only %i if using the command prompt instead of a .bat), into news pics with the wanted background.
After that I just had to do the same with my "topping" pic, as you said:
for /L %%i in (1,1,100) do magick composite -gravity center topping.png *%%i.png *%%i.png
And I got my pics with the "top" layer ! It was like making a cake^^
I lost two layers in the process, but it was so much a timesaver, it worth it...! Thank you very much rich2005 !