Reputation: 718
Can anyone point me in the direction of how to create a similar effect to that below using imagemagick? I doubt it matters, but I'm working with png images.
Upvotes: 0
Views: 136
Reputation: 53089
Another way to do this in ImageMagick uses composite -stereo.
Input:
composite -stereo -20+0 test.png test.png result1.png
But this is less flexible in the color choice than Mark Setchell's method.
Upvotes: 1
Reputation: 207365
Something like this maybe:
convert -size 800x600 caption:"SOME TEXT" -compose darken \
\( -clone 0 -fill "rgb(227,90,130)" -opaque black -roll +10+0 \) -composite \
\( -clone 0 -fill "rgb(71,160,200)" -opaque black -roll -10+0 \) -composite result.png
Upvotes: 2