1

我正在尝试在图像上放置具有半透明背景的标题。

这是文档中的示例(http://www.imagemagick.org/Usage/annotating):

width=`identify -format %w dragon.gif`; \
convert -background '#0008' -fill white -gravity center -size ${width}x30 \
      caption:"Faerie Dragons love hot apple pies\!" \
      dragon.gif +swap -gravity south -composite  anno_caption.jpg

在此处输入图像描述

到目前为止,这是我的尝试:

convert  -background transparent -colorspace transparent -fill white -gravity center -size 300x300 \
      -font fonts/customfont.ttf caption:'caption text here' \
       'cap.png'

composite -geometry +0+0 'cap_1.png' 'img_1.jpg' 'img_2.jpg'

标题按预期创建并放置在合成图像的右上角。唯一的问题是,字幕背景是黑色的,不是半透明的。我已经看到使用 xc 命令来实现透明度(例如 convert -size 50x50 xc:'#879' img.png),但我看不到如何应用该命令来设置标题 bg 颜色。

编辑:

我刚刚在 ec2 服务器上进行了测试,代码按预期工作。在 Mac 10.7x 上运行代码时会出现此问题。

4

1 回答 1

6

试一试 - 它使用具有透明度的 rgb (rgba)。

convert -size 300x300 -background rgba\(0,255,255,0.25\) -fill white -gravity center caption:'caption text here' cap.png

composite -geometry +0+0 cap.png img_1.jpg img_2.jpg
于 2012-05-31T15:55:36.630 回答