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
|
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
.\" respectively.
.TH PDFTOIPE 1 "June 19, 2004"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
pdftoipe \- Convert PDF files into editable Ipe format
.SH SYNOPSIS
.B pdftoipe
[ -f \fIint\fP ] [ -l \fIint\fP ] [ -opw \fIstring\fP ]
[ -upw \fIstring\fP ] [ -q ] \fIPDF file\fP \fIXML file\fP
.SH DESCRIPTION
\fBpdftoipe\fP converts arbitrary PDF files to Ipe's XML format.
Note that \fBpdftoipe\fP is not related to Ipe's use of the PDF file
format. PDF files generated by Ipe contain an extra stream with Ipe
markup information, which is necessary for Ipe to read the file again.
If you wish to convert an Ipe-generated PDF-file to XML format, you
should use \fIipetoipe -xml\fP! \fBpdftoipe\fP is meant to allow you
to take arbitrary PDF files and make them editable in Ipe.
\fBpdftoipe\fP does a pretty good job on drawings, but doesn't handle
text very well. Ipe's text model is based on LaTeX, which is just
very different from the text found in most PDF files.
.TP
\fB-math\fR
Use LaTeX math mode for all text objects in the PDF file
.TP
\fB-notext\fR
Ignore all text in the PDF file, convert graphics only
.TP
\fB-f\fR \fIint\fP
First page to convert
.TP
\fB-l\fR \fIint\fP
Last page to convert
.TP
\fB-opw\fR \fIstring\fP
Owner password for encrypted PDF files
.TP
\fB-upw\fP \fIstring\fP
User password for encrypted PDF files
.TP
\fB-q\fP
Quiet mode (don't print any messages or errors)
.SH AUTHOR
Pdftoipe consists for 99% of code from \fBXpdf\fR, by Derek Noonburg. The
remaining 1% of code was written by Otfried Cheong.
.SH REPORTING BUGS
.ad l
Please report bugs using Ipe bugzilla at
.I "http://ipe.compgeom.org/bugzilla.html"
.SH SEE ALSO
.ad l
More information about Ipe can be found in
.IR "The Ipe Manual" ,
which can be found in \fI/usr/share/doc/ipe/doc/manual.html\fP or in pdf format
in \fI/usr/share/doc/ipe/doc/manual.pdf\fP if you have the ipe package
installed.
|