Blame man/tiffset.1

Packit 7838c8
.\" $Id: tiffset.1,v 1.7 2016-09-25 20:05:52 bfriesen Exp $
Packit 7838c8
.\"
Packit 7838c8
.\" Copyright (c) 1988-1997 Sam Leffler
Packit 7838c8
.\" Copyright (c) 1991-1997 Silicon Graphics, Inc.
Packit 7838c8
.\"
Packit 7838c8
.\" Permission to use, copy, modify, distribute, and sell this software and 
Packit 7838c8
.\" its documentation for any purpose is hereby granted without fee, provided
Packit 7838c8
.\" that (i) the above copyright notices and this permission notice appear in
Packit 7838c8
.\" all copies of the software and related documentation, and (ii) the names of
Packit 7838c8
.\" Sam Leffler and Silicon Graphics may not be used in any advertising or
Packit 7838c8
.\" publicity relating to the software without the specific, prior written
Packit 7838c8
.\" permission of Sam Leffler and Silicon Graphics.
Packit 7838c8
.\" 
Packit 7838c8
.\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
Packit 7838c8
.\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
Packit 7838c8
.\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
Packit 7838c8
.\" 
Packit 7838c8
.\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
Packit 7838c8
.\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
Packit 7838c8
.\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
Packit 7838c8
.\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
Packit 7838c8
.\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
Packit 7838c8
.\" OF THIS SOFTWARE.
Packit 7838c8
.\"
Packit 7838c8
.if n .po 0
Packit 7838c8
.TH TIFFSET 1 "December 3, 2012" "libtiff"
Packit 7838c8
.SH NAME
Packit 7838c8
tiffset \- set or unset a field in a
Packit 7838c8
.SM TIFF
Packit 7838c8
header
Packit 7838c8
.SH SYNOPSIS
Packit 7838c8
.B tiffset
Packit 7838c8
[
Packit 7838c8
.I options
Packit 7838c8
]
Packit 7838c8
.I filename.tif
Packit 7838c8
.SH DESCRIPTION
Packit 7838c8
.I Tiffset
Packit 7838c8
sets the value of a
Packit 7838c8
.SM TIFF
Packit 7838c8
header to a specified value or removes an existing setting.
Packit 7838c8
.SH OPTIONS
Packit 7838c8
.TP
Packit 7838c8
.BI \-d " dirnumber"
Packit 7838c8
change the current directory (starting at 0).
Packit 7838c8
.TP
Packit 7838c8
.BI \-s " tagnumber" "\fR [\fP" " count" "\fR ]\fP" " value ..."
Packit 7838c8
Set the value of the named tag to the value or values specified.
Packit 7838c8
.TP
Packit 7838c8
.BI \-sd " diroffset"
Packit 7838c8
change the current directory by offset.
Packit 7838c8
.TP
Packit 7838c8
.BI \-sf " tagnumber filename"
Packit 7838c8
Set the value of the tag to the contents of filename.  This option is
Packit 7838c8
supported for ASCII tags only.
Packit 7838c8
.TP
Packit 7838c8
.BI \-u " tagnumber"
Packit 7838c8
Unset the tag.
Packit 7838c8
.SH EXAMPLES
Packit 7838c8
The following example sets the image description tag (270) of a.tif to
Packit 7838c8
the contents of the file descrip:
Packit 7838c8
.RS
Packit 7838c8
.nf
Packit 7838c8
tiffset \-sf 270 descrip a.tif
Packit 7838c8
.fi
Packit 7838c8
.RE
Packit 7838c8
.PP
Packit 7838c8
The following example sets the artist tag (315) of a.tif to the string
Packit 7838c8
``Anonymous'':
Packit 7838c8
.RS
Packit 7838c8
.nf
Packit 7838c8
tiffset \-s 315 Anonymous a.tif
Packit 7838c8
.fi
Packit 7838c8
.RE
Packit 7838c8
.PP
Packit 7838c8
This example sets the resolution of the file a.tif to 300 dpi:
Packit 7838c8
.RS
Packit 7838c8
.nf
Packit 7838c8
tiffset \-s 296 2 a.tif
Packit 7838c8
tiffset \-s 282 300.0 a.tif
Packit 7838c8
tiffset \-s 283 300.0 a.tif
Packit 7838c8
.fi
Packit 7838c8
.RE
Packit 7838c8
.PP
Packit 7838c8
Set the photometric interpretation of the third page of a.tif to
Packit 7838c8
min-is-black (ie. inverts it):
Packit 7838c8
.RS
Packit 7838c8
.nf
Packit 7838c8
tiffset -d 2 -s 262 1 a.tif
Packit 7838c8
.fi
Packit 7838c8
.RE
Packit 7838c8
.SH "SEE ALSO"
Packit 7838c8
.BR tiffdump (1),
Packit 7838c8
.BR tiffinfo (1),
Packit 7838c8
.BR tiffcp (1),
Packit 7838c8
.BR libtiff (3TIFF)
Packit 7838c8
.PP
Packit 7838c8
Libtiff library home page:
Packit 7838c8
.BR http://www.simplesystems.org/libtiff/