将阴影投射到图片的每一边

时间:2015-10-29 17:34:27

标签: imagemagick image-editing

我尝试使用imagemagick模拟上部光点,使用以下代码为png图片的每一侧添加阴影:

#!/usr/bin/env sh

imageshadow()
{
  out=${1%.*}-shadow.${1#*.}
  in=$1

  if [ ! -z $2 ]; then
    convert $in -frame $2 $out
    in=$out
  fi

  convert $in -bordercolor "#eee8d5" -border 4 \
    \( -clone 0 -background black -shadow 40x3+3+3 \) \
    \( -clone 0 -background black -shadow 40x3-3-3 \) \
    -reverse -background none -layers merge +repage $out
}

imageshadow $1

我得到了想要的阴影,但是图片的右上角和左下角有一个休息时间,我无法摆脱它们。

Example

0 个答案:

没有答案