Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个充满 JPEG 的目录。我想将它们中的每一个都转换为同名的 PNG。我试过convert *.jpg *.png了,但我最终得到了一堆名称为“ -0.png”、“ -1.png”等的 PNG。
convert *.jpg *.png
有没有办法在遍历整个目录时保留文件的名称?
任何帮助深表感谢。谢谢!
您可能需要 mogrify 命令而不是 convert 命令。
mogrify -format jpg *.png
从mogrify手册页
mogrify
Mogrify 会覆盖原始图像文件,而 convert(1) 会写入不同的图像文件。