Search found 3 matches

by Lio
2014-04-03T11:34:27-07:00
Forum: Users
Topic: Applying a mask to multiple images at the same time
Replies: 4
Views: 3923

Re: Applying a mask to multiple images at the same time

Hey. Thanks, but I was probably doing something wrong, a friend of mine that has more scripting knowledge ended up with this script that seems to work perfectly

Code: Select all

C:\foo\bar> for /f %x in ('dir /s /b *.png') do @composite -compose CopyOpacity mask.jpg %x %~dx%~px%~nxXYZ.png
by Lio
2014-04-03T09:10:41-07:00
Forum: Users
Topic: Applying a mask to multiple images at the same time
Replies: 4
Views: 3923

Re: Applying a mask to multiple images at the same time

Thanks for the answer, I tried that and a couple of other things there, but it doesn't seem to work if I try to use another image as the mask, it seems to be fine if I just draw a shape though. I may be doing something wrong, or maybe it's not supported.
by Lio
2014-04-02T06:32:07-07:00
Forum: Users
Topic: Applying a mask to multiple images at the same time
Replies: 4
Views: 3923

Applying a mask to multiple images at the same time

Hello. I've been trying to apply the same mask to multiple images at the same time with one command, but it only seems to affect the first image on the folder. This is the what I'm using composite -compose CopyOpacity mask.jpg *.png I'm not sure if composite works differently, since I've already ...