I've been struggling to find a solution to make a drop shadow just like this : http://www.flickr.com/photos/s0ulsurfing/4800804307/ with ImageMagick.
Basicly the effect is a combination of 2 drop shadows, bottom right and top left, with different intensity.
I'm ok making a single drop shadow (with a tiny border) : convert <input.jpg> -bordercolor "#4F4F4F" -border 1x1 \( +clone -background gray -shadow 60x10+10+10 \) +swap -background white -layers merge +repage <output.jpg>, but how can I achieve to get such result ??
Many thanks
