Page 1 of 1

Curved Drop Shadow

Posted: 2012-05-04T22:57:20-07:00
by mrjbar
Hello

I'm trying to create a curved drop shadow effect with a white/transparent background similair to the photo below.

Image

I was able to generate the following picture with this command:
convert thumb.png \( +clone -background gray -shadow 80x2+0+1 -wave -20x480 \) +swap -background white -layers merge +repage shadow.png

Image


I can't figure out how to swap out the gray background in the picture. I woud like the background to be white/transparent.



Thanks,

Re: Curved Drop Shadow

Posted: 2012-05-05T10:04:53-07:00
by fmw42
try this


convert thumb.png \
\( +clone -background gray -shadow 80x2+0+1 -background none -wave -20x480 \) \
+swap -background none -layers merge +repage shadow.png

Re: Curved Drop Shadow

Posted: 2012-05-05T10:27:48-07:00
by mrjbar
Yup, that did it. Thank you!!!