使用 imagemagick 应用不透明蒙版并注释水印

使用 imagemagick 应用不透明蒙版并注释水印

我正在尝试找到一种方法来使用 imagemagick 为图像应用水印和不透明度蒙版。我该怎么做?

来源

在此处输入图片描述

结果

在此处输入图片描述

感谢大家阅读。

答案1

convert a.png -brightness-contrast -60x-50  -pointsize 120 -gravity center -draw "fill white text 0,0 'SOLD'" b.png

结果:

结果

理论上,您可以通过添加或类似操作使文本变粗体-font "Arial-Bold",但在我的系统上找不到该字体。

相关内容