需要一个批处理文件来列出具有尺寸的图像文件
我已经有一个批处理文件,它显示按文件类型排序的文件夹中的文件列表:
dir /b /o:gen>filelisting.txt
我想制作一个 .bat 文件,该文件还将显示图像的宽度和高度。有没有人有代码可以做到这一点或者比我更好地理解这种类型的编程?
I already have a batch file that displays the list of files in the folder ordered by file type:
dir /b /o:gen>filelisting.txt
I would like to make a .bat file that will also display the width and height of the images. does anyone have code that will do that or understands this type of programming better than i can?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个 tooltipInfo.bat (jscript\bat可以用作
.bat
的混合体),它获取文件的 tooptip 信息并且不需要任何外部软件:如果针对图片使用则输出:
这样您就可以:
OR
与 imgInfo.bat
Here's a tooltipInfo.bat (jscript\bat hybrid that can be used as a
.bat
) that takes the tooptip information for a file and does not require any external software:Output if used against a picture:
so you can:
OR
with imgInfo.bat
尝试将其另存为 xxx.bat;
然后从命令行:
对我来说,产生;
其中第一个数字是宽度和宽度第二个高度。
Try saving this as xxx.bat;
Then from the command line:
For me, produces;
Where the 1st number is width & the 2nd height.