I'm trying to replicate the polaroid effect seen in Anthony's IM Examples, but without using the -polaroid operator as this does too much - I don't want the slight curl in the picture/shadow for example.
So, using a JPEG image as input, I'm using the following command:
Code: Select all
convert "photo.jpg" -matte -thumbnail "420x>" \
-bordercolor white -border 5 \
-bordercolor grey60 -border 1 \
-background black \( +clone -shadow 60x4+4+4 \) +swap \
-background white -flatten \
jpeg:"-"
Not quite what I intended! If I take out the line with the shadow operator on it (the whole line) the picture becomes this:
I want the soft shadow to just appear around the edges of this, like on the IM v6 Examples page
Any help appreciated