parent
2fb0c4447e
commit
c0cc7cc4da
1 changed files with 247 additions and 49 deletions
296
man/man1/page.1
296
man/man1/page.1
|
|
@ -1,6 +1,6 @@
|
||||||
.TH PAGE 1
|
.TH PAGE 1
|
||||||
.SH NAME
|
.SH NAME
|
||||||
img, psv \- view
|
page \- view
|
||||||
FAX,
|
FAX,
|
||||||
image, graphic, PostScript, PDF, and
|
image, graphic, PostScript, PDF, and
|
||||||
typesetter output
|
typesetter output
|
||||||
|
|
@ -8,67 +8,265 @@ files
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B page
|
.B page
|
||||||
[
|
[
|
||||||
|
.B -abirPRvVw
|
||||||
|
]
|
||||||
|
[
|
||||||
|
.B -p
|
||||||
|
.I ppi
|
||||||
|
]
|
||||||
|
[
|
||||||
.IR file ...
|
.IR file ...
|
||||||
]
|
]
|
||||||
.PP
|
|
||||||
.B img
|
|
||||||
.I file.bit
|
|
||||||
.PP
|
|
||||||
.B psv
|
|
||||||
.I file.ps
|
|
||||||
.PP
|
|
||||||
.B psv
|
|
||||||
.I file.pdf
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
Plan 9's
|
.I Page
|
||||||
.IR page (1)
|
is a general purpose document viewer.
|
||||||
is not ported.
|
It can be used to display the individual pages
|
||||||
Instead,
|
of a
|
||||||
|
PostScript,
|
||||||
|
PDF,
|
||||||
|
or
|
||||||
|
.IR troff (1)
|
||||||
|
or
|
||||||
|
Unix's \fItex\fR(1)
|
||||||
|
device-independent output
|
||||||
|
file.
|
||||||
|
.I Troff
|
||||||
|
or
|
||||||
|
.I tex
|
||||||
|
output is simply converted to PostScript in order to be viewed.
|
||||||
|
It can also be used to view any number of
|
||||||
|
graphics files
|
||||||
|
(such as a
|
||||||
|
FAX
|
||||||
|
page,
|
||||||
|
a Plan 9
|
||||||
|
.IR image (7)
|
||||||
|
file, an Inferno bitmap file, or other common format).
|
||||||
|
.I Page
|
||||||
|
displays these
|
||||||
|
in sequence.
|
||||||
|
In the absence of named files,
|
||||||
.I page
|
.I page
|
||||||
is a script that invokes
|
reads one from standard input.
|
||||||
.IR qiv (1)
|
.PP
|
||||||
to view graphic files
|
By default,
|
||||||
|
.I page
|
||||||
|
runs in the window in which it is started
|
||||||
|
and leaves the window unchanged.
|
||||||
|
The
|
||||||
|
.B -R
|
||||||
|
option causes
|
||||||
|
.I page
|
||||||
|
to grow the window if necessary
|
||||||
|
to display the page being viewed.
|
||||||
|
The
|
||||||
|
.B -w
|
||||||
|
option causes
|
||||||
|
.I page
|
||||||
|
to create a new window for itself.
|
||||||
|
The newly created window will grow as under the
|
||||||
|
.B -R
|
||||||
|
option.
|
||||||
|
If being used to display
|
||||||
|
multipage documents,
|
||||||
|
only one file may be specified on the command line.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B -p
|
||||||
|
option sets the resolution for PostScript and PDF
|
||||||
|
files, in pixels per inch.
|
||||||
|
The default is 100 ppi.
|
||||||
|
The
|
||||||
|
.B -r
|
||||||
|
option reverses the order in which pages are displayed.
|
||||||
|
.PP
|
||||||
|
When viewing a document,
|
||||||
|
.I page
|
||||||
|
will try to guess the true bounding box, usually rounding up from
|
||||||
|
the file's bounding box to
|
||||||
|
8½×11 or A4 size.
|
||||||
|
The
|
||||||
|
.B -b
|
||||||
|
option causes it to respect the bounding box given in the file.
|
||||||
|
As a more general problem,
|
||||||
|
some PostScript files claim to conform to Adobe's
|
||||||
|
Document Structuring Conventions but do not.
|
||||||
|
The
|
||||||
|
.B -P
|
||||||
|
option enables a slightly slower and slightly more
|
||||||
|
skeptical version of the PostScript processing code.
|
||||||
|
Unfortunately, there are PostScript documents
|
||||||
|
that can only be viewed with the
|
||||||
|
.B -P
|
||||||
|
option, and there are PostScript documents that
|
||||||
|
can only be viewed without it.
|
||||||
|
.PP
|
||||||
|
When viewing images with
|
||||||
|
.IR page ,
|
||||||
|
it listens to the
|
||||||
|
.B image
|
||||||
|
plumbing channel
|
||||||
|
(see
|
||||||
|
.IR plumber (4))
|
||||||
|
for more images to display.
|
||||||
|
The
|
||||||
|
.B -i
|
||||||
|
option causes
|
||||||
|
.I page
|
||||||
|
to not load any graphics files nor to read
|
||||||
|
from standard input but rather to listen
|
||||||
|
for ones to load from the plumbing channel.
|
||||||
|
.PP
|
||||||
|
The
|
||||||
|
.B -v
|
||||||
|
option turns on extra debugging output, and
|
||||||
|
the
|
||||||
|
.B -V
|
||||||
|
option turns on even more debugging output.
|
||||||
|
The
|
||||||
|
.B -a
|
||||||
|
option causes
|
||||||
|
.I page
|
||||||
|
to call
|
||||||
|
Unix's \fIabort\fR(3)
|
||||||
|
rather than exit cleanly on errors,
|
||||||
|
to facilitate debugging.
|
||||||
|
.PP
|
||||||
|
Pressing and holding button 1 permits panning about the page.
|
||||||
|
.PP
|
||||||
|
Button 2 raises a menu of operations on the current image or the
|
||||||
|
entire set. The image transformations are non-destructive and are
|
||||||
|
valid only for the currently displayed image. They are lost as soon
|
||||||
|
as another image is displayed.
|
||||||
|
The button 2 menu operations are:
|
||||||
|
.TF Resize
|
||||||
|
.TP
|
||||||
|
.B Orig size
|
||||||
|
Restores the image to the original. All modifications are lost.
|
||||||
|
.TP
|
||||||
|
.B Zoom
|
||||||
|
Prompts the user to sweep a rectangle on the image which is
|
||||||
|
expanded proportionally to the rectangle.
|
||||||
|
.TP
|
||||||
|
.B Fit window
|
||||||
|
Resizes the image so that it fits in the current window.
|
||||||
|
.TP
|
||||||
|
.B Rotate 90
|
||||||
|
Rotates the image 90 degrees clockwise
|
||||||
|
.TP
|
||||||
|
.B Upside down
|
||||||
|
Toggles whether images are displayed upside-down.
|
||||||
|
.TP
|
||||||
|
.B Next
|
||||||
|
Displays the next page.
|
||||||
|
.TP
|
||||||
|
.B Prev
|
||||||
|
Displays the previous page.
|
||||||
|
.TP
|
||||||
|
.B Zerox
|
||||||
|
Displays the current image in a new page window.
|
||||||
|
Useful for selecting important pages from large documents.
|
||||||
|
.TP
|
||||||
|
.B Reverse
|
||||||
|
Reverses the order in which pages are displayed.
|
||||||
|
.TP
|
||||||
|
.B Write
|
||||||
|
Writes the image to file.
|
||||||
|
.PD
|
||||||
|
.PP
|
||||||
|
Button 3 raises a menu of the
|
||||||
|
pages
|
||||||
|
to be selected for viewing in any order.
|
||||||
|
.PP
|
||||||
|
Typing a
|
||||||
|
.B q
|
||||||
or
|
or
|
||||||
.I psv
|
control-D exits the program.
|
||||||
to view PostScript and PDF.
|
Typing a
|
||||||
On Mac OS X,
|
.B u
|
||||||
.I page
|
toggles whether images are displayed upside-down.
|
||||||
invokes Preview to handle all files.
|
(This is useful in the common case of mistransmitted upside-down faxes).
|
||||||
|
Typing a
|
||||||
|
.B r
|
||||||
|
reverses the order in which pages are displayed.
|
||||||
|
Typing a
|
||||||
|
.B w
|
||||||
|
will write the currently viewed page to a new file as a compressed
|
||||||
|
.IR image (7)
|
||||||
|
file.
|
||||||
|
When possible, the filename is of the form
|
||||||
|
.IR basename . pagenum . bit .
|
||||||
|
Typing a
|
||||||
|
.B d
|
||||||
|
removes an image from the working set.
|
||||||
.PP
|
.PP
|
||||||
.I Img
|
To go to a specific page, one can type its number followed by enter.
|
||||||
is a simple image viewer for Plan 9 images
|
Typing left arrow, backspace, or minus displays the previous page.
|
||||||
(see
|
Typing right arrow, space, or enter displays the next page.
|
||||||
.IR image (7)).
|
The up and down arrow pan up and down one half screen height,
|
||||||
|
changing pages when panning off the top or bottom of the page.
|
||||||
.PP
|
.PP
|
||||||
.I Psv
|
.I Page
|
||||||
is a PostScript and PDF viewer.
|
calls
|
||||||
It is a streamlined interface to
|
Unix's \fIgs\fR(1)
|
||||||
.IR gv (1).
|
to draw each page of PostScript
|
||||||
.PP
|
and
|
||||||
To view troff output, use
|
PDF
|
||||||
.IR proof (1).
|
.IR files .
|
||||||
|
It also calls a variety of conversion programs, such as those described in
|
||||||
|
.IR jpg (1),
|
||||||
|
to convert the various raster graphics formats
|
||||||
|
into Inferno bitmap files.
|
||||||
|
Pages are converted ``on the fly,'' as needed.
|
||||||
|
.SH EXAMPLES
|
||||||
|
.TP
|
||||||
|
.L
|
||||||
|
page /sys/src/cmd/gs/examples/tiger.eps
|
||||||
|
Display a color PostScript file.
|
||||||
|
.TP
|
||||||
|
.L
|
||||||
|
page /usr/inferno/icons/*.bit
|
||||||
|
Browse the Inferno bitmap library.
|
||||||
|
.TP
|
||||||
|
.L
|
||||||
|
man -t page | page -w
|
||||||
|
Preview this manual in a new window.
|
||||||
.SH "SEE ALSO
|
.SH "SEE ALSO
|
||||||
.IR gs (1),
|
.IR gs (1),
|
||||||
.IR gv (1),
|
|
||||||
.IR jpg (1),
|
.IR jpg (1),
|
||||||
.IR proof (1),
|
.IR proof (1),
|
||||||
.IR tex (1),
|
.IR tex (1),
|
||||||
.IR troff (1)
|
.IR troff (1)
|
||||||
.SH SOURCE
|
.SH SOURCE
|
||||||
.B \*9/src/cmd/draw/img.c
|
.B \*9/src/cmd/page
|
||||||
.br
|
.SH DIAGNOSTICS
|
||||||
.B \*9/bin/psv
|
The mouse cursor changes to an arrow and ellipsis
|
||||||
.SH BUGS
|
when
|
||||||
When using Preview on Mac OS X,
|
|
||||||
.I page
|
.I page
|
||||||
leaves temporary files in
|
is reading or writing a file.
|
||||||
.BR /var/tmp ,
|
.SH BUGS
|
||||||
since it has no way to know when the viewer has exited.
|
|
||||||
.PP
|
|
||||||
.I Page
|
.I Page
|
||||||
does not handle
|
supports reading of only one document
|
||||||
Plan 9
|
file at a time, and
|
||||||
.IR image (7)
|
the user interface is clumsy when viewing very large documents.
|
||||||
files; use
|
.PP
|
||||||
.I img
|
When viewing multipage PostScript files that do not contain
|
||||||
explicitly.
|
.RB `` %%Page ''
|
||||||
|
comments, the button 3 menu only contains
|
||||||
|
``this page'' and ``next page'':
|
||||||
|
correctly determining
|
||||||
|
page boundaries in Postscript code is not computable
|
||||||
|
in the general case.
|
||||||
|
.PP
|
||||||
|
If
|
||||||
|
.I page
|
||||||
|
has trouble viewing a Postscript file,
|
||||||
|
it might not be exactly conforming: try viewing it with the
|
||||||
|
.B -P
|
||||||
|
option.
|
||||||
|
.PP
|
||||||
|
The interface to the plumber is unsatisfactory. In particular,
|
||||||
|
document references cannot be sent
|
||||||
|
via plumbing messages.
|
||||||
|
.PP
|
||||||
|
There are too many keyboard commands and menu items.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue