1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
.TH identify 1 "Date: 2004/01/01 01:00:00" "ImageMagick"
.SH IDENTIFY
.SH NAME
identify - describe an image or image sequence.
.SH SYNOPSIS
\fBidentify\fP \fIfile\fP [ \fIfile\fP ... ]
.SH DESCRIPTION
\fBIdentify\fP describes the format and characteristics of one or more
image files. It will also report if an image is incomplete or corrupt.
The information displayed includes the scene number, the file name, the
width and height of the image, whether the image is colormapped or not,
the number of colors in the image, the number of bytes in the image, the
format of the image (JPEG, PNM, etc.), and finally the number of seconds
it took to read and process the image. An example line output
from \fBidentify\fP follows:
images/aquarium.miff 640x480 PseudoClass 256c
308135b MIFF 1s
If -verbose is set, expect additional output including any image
comment:
Image: images/aquarium.miff
class: PseudoClass
colors: 256
signature: eb5dca81dd93ae7e6ffae99a527eb5dca8...
matte: False
geometry: 640x480
depth: 8
bytes: 308135
format: MIFF
comments:
Imported from MTV raster image: aquarium.mtv
For some formats, additional format-specific information about the file
will be written if the -debug coder or -debug all option
is used.
.SH OPTIONS
.SH IDENTIFY OPTIONS
Options are processed in command line order. Any option you specify on
the command line remains in effect for the set of images immediately
following, until the set is terminated by the appearance of any option
or \fB-noop\fP.
For a more detailed description of each option, see
Options, above.
\fIImageMagick(1)\fP.
.TP
.B "-authenticate \fI<string>"\fP
\fRdecrypt image with this password
.TP
.B "-cache \fI<threshold>"\fP
\fR(This option has been replaced by the -limit option)
.TP
.B "-debug \fI<events>"\fP
\fRenable debug printout
.TP
.B "-define \fI<key>{=<value>},..."\fP
\fRadd coder/decoder specific options
.TP
.B "-density \fI<width>x<height>"\fP
\fRhorizontal and vertical resolution in pixels of the image
.TP
.B "-depth \fI<value>"\fP
\fRdepth of the image
.TP
.B "-format \fI<string>"\fP
\fRoutput formatted image characteristics
.TP
.B "-help"
\fRprint usage instructions
.TP
.B "-interlace \fI<type>"\fP
\fRthe type of interlacing scheme
.TP
.B "-limit \fI<type> <value>"\fP
\fRArea, Disk, File, Map, or Memory resource limit
.TP
.B "-list \fI<type>"\fP
\fRthe type of list
.TP
.B "-log \fI<string>"\fP
\fRSpecify format for debug log
.TP
.B "-ping"
\fRefficiently determine image characteristics
.TP
.B "-sampling-factor \fI<horizontal_factor>x<vertical_factor>"\fP
\fRsampling factors used by JPEG or MPEG-2 encoder and YUV decoder/encoder.
.TP
.B "-size \fI<width>x<height>{+offset}"\fP
\fRwidth and height of the image
.TP
.B "-verbose"
\fRprint detailed information about the image
.TP
.B "-version"
\fRprint ImageMagick version string
For a more detailed description of each option, see
Options, above.
\fIImageMagick(1)\fP.
.SH SEE ALSO
display(1), animate(1), montage(1), mogrify(1), convert(1), ImageMagick(1),
composite(1)
.SH COPYRIGHT
\fBCopyright (C) 1999-2004 ImageMagick Studio LLC. Additional copyrights and
licenses apply to this software, see
http://www.imagemagick.org/www/Copyright.html\fP
|