Blame man/tiffdump.1

Packit 994f1a
.\" $Id: tiffdump.1,v 1.5 2006/04/20 12:17:19 dron Exp $
Packit 994f1a
.\"
Packit 994f1a
.\" Copyright (c) 1988-1997 Sam Leffler
Packit 994f1a
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
Packit 994f1a
.\"
Packit 994f1a
.\" Permission to use, copy, modify, distribute, and sell this software and 
Packit 994f1a
.\" its documentation for any purpose is hereby granted without fee, provided
Packit 994f1a
.\" that (i) the above copyright notices and this permission notice appear in
Packit 994f1a
.\" all copies of the software and related documentation, and (ii) the names of
Packit 994f1a
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 994f1a
.\" publicity relating to the software without the specific, prior written
Packit 994f1a
.\" permission of Sam Leffler and Silicon Graphics.
Packit 994f1a
.\" 
Packit 994f1a
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit 994f1a
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit 994f1a
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit 994f1a
.\" 
Packit 994f1a
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 994f1a
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 994f1a
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 994f1a
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit 994f1a
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit 994f1a
.\" OF THIS SOFTWARE.
Packit 994f1a
.\"
Packit 994f1a
.if n .po 0
Packit 994f1a
.TH TIFFDUMP 1 "October 23, 2005" "libtiff"
Packit 994f1a
.SH NAME
Packit 994f1a
tiffdump \- print verbatim information about
Packit 994f1a
.SM TIFF
Packit 994f1a
files
Packit 994f1a
.SH SYNOPSIS
Packit 994f1a
.B tiffdump
Packit 994f1a
[
Packit 994f1a
.I options
Packit 994f1a
]
Packit 994f1a
.I "name \&..."
Packit 994f1a
.SH DESCRIPTION
Packit 994f1a
.I tiffdump
Packit 994f1a
displays directory information from files created according
Packit 994f1a
to the Tag Image File Format, Revision 6.0.
Packit 994f1a
The header of each
Packit 994f1a
.SM TIFF
Packit 994f1a
file (magic number, version, and first directory offset)
Packit 994f1a
is displayed, followed by the tag contents of each directory in the file.
Packit 994f1a
For each tag, the name, data type, count, and value(s) is displayed.
Packit 994f1a
When the symbolic name for a tag or data type is known, the symbolic
Packit 994f1a
name is displayed followed by it's numeric (decimal) value.
Packit 994f1a
Tag values are displayed enclosed in ``<>'' characters immediately
Packit 994f1a
preceded by the value of the count field.
Packit 994f1a
For example, an
Packit 994f1a
.I ImageWidth
Packit 994f1a
tag might be displayed as ``ImageWidth (256) SHORT (3) 1<800>''.
Packit 994f1a
.PP
Packit 994f1a
.I tiffdump
Packit 994f1a
is particularly useful for investigating the contents of
Packit 994f1a
.SM TIFF
Packit 994f1a
files that
Packit 994f1a
.I libtiff
Packit 994f1a
does not understand.
Packit 994f1a
.SH OPTIONS
Packit 994f1a
.TP
Packit 994f1a
.B \-h
Packit 994f1a
Force numeric data to be printed in hexadecimal rather than the
Packit 994f1a
default decimal.
Packit 994f1a
.TP
Packit 994f1a
.BI \-m " items"
Packit 994f1a
Change the number of indirect data items that are printed. By default, this
Packit 994f1a
will be 24.
Packit 994f1a
.TP
Packit 994f1a
.BI \-o " offset"
Packit 994f1a
Dump the contents of the 
Packit 994f1a
.SM IFD
Packit 994f1a
at the a particular file offset.
Packit 994f1a
The file offset may be specified using the usual C-style syntax;
Packit 994f1a
i.e. a leading ``0x'' for hexadecimal and a leading ``0'' for octal.
Packit 994f1a
.SH "SEE ALSO"
Packit 994f1a
.BR tiffinfo (1),
Packit 994f1a
.BR libtiff (3TIFF)
Packit 994f1a
.PP
Packit 994f1a
Libtiff library home page:
Packit 994f1a
.BR http://www.remotesensing.org/libtiff/