unnecessary image appear

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
glennrp
Posts: 1147
Joined: 2006-04-01T08:16:32-07:00
Location: Maryland 39.26.30N 76.16.01W

Re: unnecessary image appear

Post 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
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post 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
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply