Link to home
Start Free TrialLog in
Avatar of CPH
CPH

asked on

Require an option to retrieve file properties

Hi,

We have large no of  tif images from which we need to access the properties like size,image resolution, compression etc.
We are able to retrieve file modified date, file size etc but not the above information.
Please suggest an option.

Thanks!
Cph
ASKER CERTIFIED SOLUTION
Avatar of Bill Prew
Bill Prew

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I suggest faststone image viewer

open it press I (or right click and click EXIF info)
User generated image
Avatar of CPH
CPH

ASKER

Hi,
To view few lacs of images spread in various sub folder is an impossible task, especially to verify the compression/ size of images etc.
Thanks!
Cheiro
Didn't really understand you comment, was that related to ExifTool?


»bp
Avatar of CPH

ASKER

Hi, Iam yet to try both the suggested tool. But any possibility of macro or similar options to retrieve the properties ? at one go.
ExifTool can process all desired files in a folder and subfolders, and send all results to a single CSV file.  You can then import that into Excel or whatever to work with the information.


»bp
Avatar of CPH

ASKER

Thanks to Bill Prew and HainKurt.
We have chosen exiftool and the below formula to retrieve the data.


exiftool -a -u -g1 "D:\FILEPATH\*.tif" >LIST.TXT
exiftool -a -u -g1 *.tif >list.txt

Thanks!
CPH
Avatar of CPH

ASKER

Got better solution .