Search found 3 matches
- 2013-11-04T12:27:12-07:00
- Forum: Users
- Topic: Trouble making an efficient BAT file to overlay images
- Replies: 5
- Views: 2140
Re: Trouble making an efficient BAT file to overlay images
The three step method works satisfactorily for what I'm trying to accomplish. Thank you very much for your help, snibgo! It's appreciated. =)
- 2013-11-03T21:38:59-07:00
- Forum: Users
- Topic: Trouble making an efficient BAT file to overlay images
- Replies: 5
- Views: 2140
Re: Trouble making an efficient BAT file to overlay images
Thank you very much for the correction regarding the correct order of the operators, snibgo! Despite being in the incorrect position, the BAT still worked when I tested it earlier, so I didn't notice I made a mistake. This is my current progress to making an efficient BAT file: for /L %%n in (1,1 ...
- 2013-11-03T18:45:32-07:00
- Forum: Users
- Topic: Trouble making an efficient BAT file to overlay images
- Replies: 5
- Views: 2140
Trouble making an efficient BAT file to overlay images
I'm trying to create a BAT file to overlay a specific series of transparent .png files over a specific series of background .png files. This is what the BAT file will look like with my current knowledge: convert Original\image_001.png Overlay\image_001.png -gravity center -composite Result\image_001 ...