如何通过 Imagemagick 批量反转图像的颜色?

How can I invert the colors of images in bulk by Imagemagick?

我想在Linux中将无数个图形的颜色反转,代码如下:

mogrify /home/yu/Desktop/1 -negate /home/yu/Desktop/2

源文件在路径1,目标文件夹在路径2。

然而,这是错误的。它指出“mogrify:此图像格式没有解码委托 `'@error/constitute。c/ReadImage/562。”

您需要为“/home/yu/Desktop/2”使用 -path 参数和文件模式——而不仅仅是父目录。

mogrify -path /home/yu/Desktop/2 -negate /home/yu/Desktop/1/*.jpg

请务必将 *.jpg 替换为您在源目录中期望的任何文件类型。

Remember to define all CLI arguments before the filename pattern when using the mogrify utility.