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