How do you set the overlay mode and the opacity?
Posted: 2012-04-18T06:24:18-07:00
Hi there!
Here is how far I got...
I want to duplicate the layer and add a motion blur:
(In Photoshop: Angle=0, Distance=150)
Next I want to set the overlay mode for the duplicated layer to "screen" and set its opacity to 50%.
What I tried is:
But that just returned "image.jpg" (even without the grayscale).
Anyway, I'd really appreciate any help with this! Thanks
Here is how far I got...
Code: Select all
convert image.jpg -type GrayScale
Code: Select all
(+clone -motion-blur 0x150+0)
Next I want to set the overlay mode for the duplicated layer to "screen" and set its opacity to 50%.
Code: Select all
final.jpg
Code: Select all
-compose blend -define compose:args=50,50 -composite
Anyway, I'd really appreciate any help with this! Thanks