Page 1 of 1

Re: unnecessary image appear

Posted: 2006-08-14T13:51:24-07:00
by glennrp
dontlie wrote: hi )

trying to know image width:

Code: Select all

convert file_tmp -format "%w" -identify
image "-identify" appears (same as file_tmp)
how i can cancel that? i dont need it

sorry for bad english))


Try

Code: Select all

identify -format "%w" file_tmp
Glenn

Posted: 2006-08-15T23:44:41-07:00
by anthony
Alturnativally info: is a special 'identify text' ouput type

EG

Code: Select all

convert image -format %w info:
is the same as

Code: Select all

identify -format %w image