用批处理在txt文件中写入图像的宽度和高度

write width and height of an image in txt file with batch

如何使用 ffmpeg 或 irfanview 在新文件中保存图像大小(宽度和高度)?

我想这样保存:

img.png 800 600
img2.png 640 480
....

提前致谢。

如果您准备使用 Windows 免费的 ImageMagick,您可以通过此

实现您的目标
identify -format "%f %w %h\n" *png  > someFile.txt

输出

baddies.png 500 500
bar.png 4422 480
blobs.png 500 500
board.png 100 100
datebar.png 100 60
explain.png 1769 480

顺便说一下,Windows 记事本和其他工具可能更适合使用 Windows 样式的行尾,因此您可以将我的回答中的 \n 替换为 \r\n 让他们更快乐。