Search found 4 matches

by GiladD
2012-07-20T02:54:41-07:00
Forum: Users
Topic: Batch composing multiple files
Replies: 7
Views: 17032

Re: Batch composing multiple files

You were almost there... Some research revealed that it actually needs to be:

Code: Select all

for /L %i in (1,1,12) do ...
Thanks for everyone for their help, though!
by GiladD
2012-07-19T09:26:42-07:00
Forum: Users
Topic: Batch composing multiple files
Replies: 7
Views: 17032

Re: Batch composing multiple files

Should have mentioned I use Windows. Is there a DOS equivalent to do that?
by GiladD
2012-07-19T01:20:51-07:00
Forum: Users
Topic: Batch composing multiple files
Replies: 7
Views: 17032

Re: Batch composing multiple files

Thanks for your reply, pipitas. I should maybe have mentioned that I do have a lot of experience programming and scripting, just not with IM... :D
However, trying to run your code from a .bat file produces this error message:
i was unexpected at this time.
by GiladD
2012-07-18T02:10:31-07:00
Forum: Users
Topic: Batch composing multiple files
Replies: 7
Views: 17032

Batch composing multiple files

Hi all, This is my first attempt at scripting IM, so please forgive me if it's a very silly question. Basically, my task is to take a folder of multiple pairs of images, overlay them and then save under a new name. So the file names are: p1_bg.jpg p1_fg.png p2_bg.jpg p2_fg.png And I want the ...