作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建像 Shutterstock 这样的图像水印。我已经尝试但无法复制它。我尝试使用以下命令。对我来说问题是我无法像 Shutterstock 那样向图像添加对角线随机文本。我尝试了很多选择,但都没有成功。
infile="zoom.jpg"
ww=$(convert -ping "$infile" -format "%[fx:w-1]" info:)
hh=$(convert -ping "$infile" -format "%[fx:h-1]" info:)
convert "$infile" \
-fill "graya(100%,0.75)" \
-draw "line 0,0 $ww,$hh line $ww,0 0,$hh" -alpha off \
-fill "graya(50%,0.25)" \
tile_aqua_500_text_x_text.jpg
composite -dissolve 35 -gravity center logo.png tile_aqua_500_text_x_text.jpg tile_aqua_500_text_x_text.jpg
convert -background none -size 220x320 xc:none -font DejaVu-Sans-Bold -pointsize 30 \
-gravity North -draw "rotate -22 fill grey text 20,10 'knot9'" \
-gravity West -draw "rotate -27 fill grey text 5,15 '89898989'" \
miff:- |\
composite -dissolve 70 -tile - tile_aqua_500_text_x_text.jpg tile_aqua_500_text_x_text.jpg
width=`identify -format %w tile_aqua_500_text_x_text.jpg`; \
convert -background '#0008' -fill white -gravity center -size ${width}x30 -pointsize 10 -font DejaVu-Sans-Bold\
caption:"\nThis image is Copyrighted by Knot9 \n www.knot9.com | Image Id: 89898989\n" \
tile_aqua_500_text_x_text.jpg +swap -gravity south -composite tile_aqua_500_text_x_text.jpg
最佳答案
在 ImageMagick 中,您可以执行以下操作。使用 label: 在透明背景上创建一个小文本图像。旋转它。填充它以控制间距。平铺它以填充图像。然后将平铺图像合成到背景图像上。
图片:
convert lena.png \
\( -size 100x -background none -fill white -gravity center \
label:"watermark" -trim -rotate -30 \
-bordercolor none -border 10 \
-write mpr:wm +delete \
+clone -fill mpr:wm -draw 'color 0,0 reset' \) \
-compose over -composite \
lena_watermark.png
如果使用 ImageMagick 7,则将 convert 更改为 magick
关于imagemagick - 如何使用 imagemagick 创建类似 shutterstock 的水印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55101441/
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足 Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以
我想创建像 Shutterstock 这样的图像水印。我已经尝试但无法复制它。我尝试使用以下命令。对我来说问题是我无法像 Shutterstock 那样向图像添加对角线随机文本。我尝试了很多选择,但都
我想将 Shutterstock 图像编辑器集成到我的简单 HTML 应用程序中。因此,我在 Shutterstock 中创建了一个开发者帐户并创建了我的 API key 。下面是我的 API: 现在
我是一名优秀的程序员,十分优秀!