Search found 3 matches
- 2017-02-28T12:54:55-07:00
- Forum: Users
- Topic: Generate all possible heirarchical layer composites
- Replies: 5
- Views: 2484
Re: Generate all possible heirarchical layer composites
Sure it can be done, very easily. In a BAT file, use a "for" loop. I suggest you type "for /?" at the command line to find the syntax. Then experiment. Geh, bat is a bit beyond me. Got this far (formatted for ease of reading): For /D %%S in (*.*) do ( For /r [%%dpn~S] %%F in (*.png) do ( ) ) So ...
- 2017-02-28T12:02:10-07:00
- Forum: Users
- Topic: Generate all possible heirarchical layer composites
- Replies: 5
- Views: 2484
Re: Generate all possible heirarchical layer composites
It sounds as if you want to loop through all the images in A. For each one, loop through all images in B, and for each of those loop through all images in C. Within these nested loops, "-layers merge" the three images. Is that right? Then it is a simple task in a shell script. Yup, that's what I'm ...
- 2017-02-28T11:49:36-07:00
- Forum: Users
- Topic: Generate all possible heirarchical layer composites
- Replies: 5
- Views: 2484
Generate all possible heirarchical layer composites
Yeah, just found out that the word hierarchical exists. Bloody ugly word I tell ya. Anywho, I've got a bunch of images I need to separate into pieces, and then assemble each possible combination of pieces into layers. I've done this a few times by hand in Photoshop, and boy am I tired of it. Just ...