Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
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 ??