如何在imagemagick中在背景上合成具有给定不透明度的图像?

时间:2015-06-21 14:29:39

标签: imagemagick

我有一张bacground.png图片,假设用以下内容生成:

convert -size 400x100 gradient:red-blue background.png

和一些叠加图片text.png,假设使用以下内容生成:

convert -size 400x100 xc:none  -box white  -pointsize 20 -gravity center -draw 'font-size 60 text 0,0 "Hello"' text.png

我想在text.png之上生成background.png text.png不透明度设置为30%

任何想法?谢谢。

1 个答案:

答案 0 :(得分:0)

好吧,我明白了:

composite -dissolve 30 text.png background.png -alpha Set out.png

基于compose dissolve用法示例。