哪个ImageMagic命令可以写入图像元数据?

时间:2018-10-23 21:14:46

标签: imagemagick

我正在谈论此元数据:

enter image description here

我知道该命令:

magick mogrify -strip image.jpg

可以清除所有信息。但是我不知道可以用ImageMagic编写一些元数据吗?

1 个答案:

答案 0 :(得分:0)

似乎magick identify -set可以完成您所想的-我只需要花一点时间自己测试一下,这是ident手册页中的相应部分:

-set attribute value set an image attribute

我将在几分钟之内将发现的内容编辑成这个答案:)

编辑: 这似乎可行:

convert input.png -set new_attribute "attribute value" output.png

至少它根据imagemagick的identify -verbose起作用,我无法测试这些属性是否也出现在Windows上。 我猜想,只要首先使用identify -verbose找到实际的密钥,覆盖其他元数据也应该很简单。

有关更多信息,请参阅官方文档:

https://www.imagemagick.org/script/command-line-options.php#set