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

时间:2013-09-02 18:44:53

标签: imagemagick

我找到了一种使用imagemagick为图像应用水印和不透明蒙版的方法。

来源

enter image description here

结果

enter image description here

谢谢大家阅读。

2 个答案:

答案 0 :(得分:3)

感谢emcconville提供了一个很好的解决方案,但它仍然需要图像大小的矩形。我找到了一个更好的解决方案,我们不需要指定图像的矩形。

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

我希望这对某人有用。

答案 1 :(得分:2)

这是非常基本的,有趣的,与ImageMagick的东西。 “Annotating”一文中的示例和详细信息。不透明面膜&当简单的注释和水印时,水印可能是过度的。绘画将起作用。

convert source.png \
    -fill "#0009" -draw 'rectangle 0,0,450,335' \
    -fill white -pointsize 64 -gravity Center -annotate 0 "SOLD" \
    sold.png