add dropshadow to image with imagemagick
Tiny shell script to add drop shadow to a PNG image with the use of convert(1) from ImageMagick and save the output as a new file with .shadow appended to the input image file name, before the suffix. #!/bin/sh convert $1 -bordercolor none -border 12 \( +clone -background black \ -shadow 80×3+3+3 \) +swap -background … Read more