Search found 2 matches

by Loikkanen
2016-01-07T09:02:29-07:00
Forum: Users
Topic: Saving all dimension information to a file
Replies: 3
Views: 4102

Re: Saving all dimension information to a file

Thank you. That worked.
It seems that you can omit the directory, so you can copy the cmd to another directory and use it as it is.

Code: Select all

for /R %%I in ( *.jpg ) do identify -format "%%i %%wx%%h\n" "%%I" >> \dimensions.txt
by Loikkanen
2016-01-06T03:09:37-07:00
Forum: Users
Topic: Saving all dimension information to a file
Replies: 3
Views: 4102

Saving all dimension information to a file

I want save all information of the dimensions of all jpg's in a directory (including sub-directories). This seem to work: FOR /R %f IN (*.jpg) DO identify "%f" -size 1920x1080 using standard output like this: FOR /R %f IN (*.jpg) DO identify "%f" -size 1920x1080 > \dimensions.txt creates the file ...