我有一张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%
。
任何想法?谢谢。
答案 0 :(得分:0)
composite -dissolve 30 text.png background.png -alpha Set out.png
基于compose dissolve用法示例。