I would like to print a list of the width and height of all the images in a specified folder.
Adding other EXIF data would be good too, but not essential.
Does anyone know a Windows program that can do this?
Tim
Printable View
I would like to print a list of the width and height of all the images in a specified folder.
Adding other EXIF data would be good too, but not essential.
Does anyone know a Windows program that can do this?
Tim
Hi, Tim;
I don't know of a specific solution. But if you have some Windows batch file skills, you could use exiftool to write a script to do it. I sometimes use exiftool to grab specific data items.
Cheers,
Rick
Thanks Rick - ExifTool was the one for the job. Here's what I found out, and then did:
ExifTool can produce a file that contains tag information from images in a given directory, and all sub-directories. The documentation is extensive, but requires a lot of detailed reading to get going. Alternatively:
1/ Download the Windows-executable file and save it in a directory (such as C:\photos) with the photos that you need the size for. Sub-folders with photos can be included, as the search is recursive.
2/ Create a file in this directory called 'out.txt'. If this file already exists, any existing contents will be over-written.
3/ Open a Command Prompt and change the directory: cd C:\photos
4/ Type in the following command line, and press Return:
exiftool -r -T -filename -createdate -imagesize c:\photos > out.txt
Note these options: -r = recursive search. -T = display in tabular form.
4/ The data will be saved in a file called 'out.txt'.
For further info on options, see the ExifTool documentation, or double-click on the 'exiftool.exe' file.
Regards to all, Tim
Thanks for the detailed write-up, Tim. That's a feature of ExitTool I haven't used, and very useful.
Cheers,
Rick