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
|
\
.\" This man page was generated by the Netpbm tool 'makeman' from HTML source.
.\" Do not hand-hack it! If you have bug fixes or improvements, please find
.\" the corresponding HTML page on the Netpbm website, generate a patch
.\" against that, and send it to the Netpbm maintainer.
.TH "Pbmtoepsi User Manual" 1 "June 2002" "netpbm documentation"
.SH NAME
pbmtoepsi - convert a PBM image to an encapsulated PostScript
style preview bitmap
.UN synopsis
.SH SYNOPSIS
\fBpbmtoepsi\fP
[\fB-dpi=\fP\fIN\fP[\fBx\fP\fIN\fP]]
[\fB-bbonly\fP]
[\fIpbmfile\fP]
.PP
All options can be abbreviated to their shortest unique prefix.
You may use two hyphens instead of one. You may separate an option
name and its value with white space instead of an equals sign.
.UN description
.SH DESCRIPTION
.PP
This program is part of
.BR "Netpbm" (1)\c
\&.
.PP
Reads a PBM image as input. Produces an encapsulated Postscript
style bitmap as output. The output is not a stand alone postscript
file, it is only a preview bitmap, which can be included in an
encapsulated PostScript file.
.PP
\fBpbmtoepsi\fP assumes the PBM input describes a whole output
page, with one pixel on the page corresponding to one PBM pixel. It
detects white borders in the image and generates Postscript output
that contains a Bounding Box statement to describe the location of the
principal image (the image excluding the white borders) on the page
and thus does not include the borders in the raster part of the
Postscript output.
.PP
There is no \fBepsitopbm\fP tool - this transformation is one way.
.UN options
.SH OPTIONS
.PP
In addition to the options common to all programs based on libnetpbm
(most notably \fB-quiet\fP, see
.UR index.html#commonoptions
Common Options
.UE
\&), \fBpbmtoepsi\fP recognizes the following
command line options:
.TP
\fB-dpi=\fP\fIN\fP[\fBx\fP\fIN\fP]
.sp
This option specifies the resolution in dots per inch of the
ultimate output device. You must specify this because the
Bounding Box statement defines the bounding box in absolute
distances, not in pixels. \fBpbmtoepsi\fP assumes in
calculating the bounding box that each PBM pixel will become one
dot on the output device, and applies your \fBdpi\fP
specification to calculate the size and location on the page of
the bounding box.
.sp
If you specify \fIN\fP\fBx\fPN, the first number is the
horizontal resolution and the second number is the vertical
resolution. If you specify just a single number \fIN\fP, that is the
resolution in both directions.
.sp
The default is 72 dots per inch in both directions.
.sp
This option was new In Netpbm 10.3 (June 2002). Before that,
\fBpbmtoepsi\fP always assumed 72 dots per inch in both directions.
.TP
\fB-bbonly\fP
Only create a boundary box, don't fill it with the image.
.UN seealso
.SH SEE ALSO
.BR "pbm" (1)\c
\&,
.BR "pnmtops" (1)\c
\&,
.BR "pstopnm" (1)\c
\&,
.BR "psidtopgm" (1)\c
\&,
.BR "pbmtolps" (1)\c
\&,
Postscript language documentation
.UN author
.SH AUTHOR
Copyright (C) 1988 Jef Poskanzer, modified by Doug Crabill 1992
.SH DOCUMENT SOURCE
This manual page was generated by the Netpbm tool 'makeman' from HTML
source. The master documentation is at
.IP
.B http://netpbm.sourceforge.net/doc/pbmtoepsi.html
.PP
|