]>
Commit | Line | Data |
---|---|---|
80ed523f | 1 | .\" $Id: bmp2tiff.1,v 1.7 2006-04-20 12:17:19 dron Exp $ |
8414a40c VZ |
2 | .\" |
3 | .\" Copyright (c) 2004, Andrey Kiselev <dron@ak4719.spb.edu> | |
4 | .\" | |
5 | .\" Permission to use, copy, modify, distribute, and sell this software and | |
6 | .\" its documentation for any purpose is hereby granted without fee, provided | |
7 | .\" that (i) the above copyright notices and this permission notice appear in | |
8 | .\" all copies of the software and related documentation, and (ii) the names of | |
9 | .\" Sam Leffler and Silicon Graphics may not be used in any advertising or | |
10 | .\" publicity relating to the software without the specific, prior written | |
11 | .\" permission of Sam Leffler and Silicon Graphics. | |
12 | .\" | |
13 | .\" THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, | |
14 | .\" EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY | |
15 | .\" WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. | |
16 | .\" | |
17 | .\" IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR | |
18 | .\" ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, | |
19 | .\" OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, | |
20 | .\" WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF | |
21 | .\" LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE | |
22 | .\" OF THIS SOFTWARE. | |
23 | .\" | |
24 | .if n .po 0 | |
25 | .TH BMP2TIFF 1 "15 October, 2004" "libtiff" | |
26 | .SH NAME | |
27 | bmp2tiff \- create a | |
28 | .SM TIFF | |
29 | file from a Microsoft Windows Device Independent Bitmap image file | |
30 | .SH SYNOPSIS | |
31 | .B bmp2tiff | |
32 | [ | |
33 | .I options | |
34 | ] | |
80ed523f VZ |
35 | .I input.bmp |
36 | [ | |
37 | .I input2.bmp ...\& | |
38 | ] | |
8414a40c VZ |
39 | .I output.tiff |
40 | .SH DESCRIPTION | |
41 | .I bmp2tiff | |
42 | converts a Microsoft Windows Device Independent Bitmap image file to | |
43 | .SM TIFF. | |
44 | If several input BMP files are being specified the multipage | |
45 | .SM TIFF | |
46 | output file will be created. By default, the | |
47 | .SM TIFF | |
48 | image is created with data samples packed (\c | |
49 | .IR PlanarConfiguration =1), | |
50 | compressed with the PackBits algorithm (\c | |
80ed523f | 51 | .IR Compression =32773), |
8414a40c VZ |
52 | and with each strip no more than 8 kilobytes. |
53 | These characteristics can overridden, or explicitly specified | |
54 | with the options described below. | |
55 | .SH OPTIONS | |
56 | .TP | |
57 | .B \-c | |
58 | Specify a compression scheme to use when writing image data: | |
59 | .B "\-c none" | |
60 | for no compression, | |
80ed523f | 61 | .B "\-c packbits" |
8414a40c | 62 | for the PackBits compression algorithm (the default), |
80ed523f | 63 | .B "\-c jpeg" |
8414a40c | 64 | for the baseline JPEG compression algorithm, |
80ed523f | 65 | .B "\-c zip" |
8414a40c VZ |
66 | for the Deflate compression algorithm, |
67 | and | |
68 | .B "\-c lzw" | |
69 | for Lempel-Ziv & Welch. | |
70 | .TP | |
80ed523f | 71 | .BI \-r " number" |
8414a40c VZ |
72 | Write data with a specified number of rows per strip; |
73 | by default the number of rows/strip is selected so that each strip | |
74 | is approximately 8 kilobytes. | |
75 | .SH "SEE ALSO" | |
76 | .BR gif2tiff (1), | |
77 | .BR pal2rgb (1), | |
78 | .BR ppm2tiff (1), | |
79 | .BR raw2tiff (1), | |
80 | .BR ras2tiff (1), | |
81 | .BR sgi2tiff (1), | |
82 | .BR libtiff (3TIFF) | |
83 | .PP | |
84 | Libtiff library home page: | |
85 | .BR http://www.remotesensing.org/libtiff/ |