Difference between revisions of "Ghostscript"
Jump to navigation
Jump to search
m (Larivact moved page Ps2pdf to Ghostscript: content doesn't warrant article, expand scope) |
(style) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | |||
[[Category:Office]] | [[Category:Office]] | ||
[[es:Ps2pdf]] | [[es:Ps2pdf]] | ||
− | + | [[Wikipedia:Ghostscript|Ghostscript]] is an interpreter for PostScript and PDF. | |
== Installation == | == Installation == | ||
Line 8: | Line 7: | ||
[[Install]] the {{Pkg|ghostscript}} package. | [[Install]] the {{Pkg|ghostscript}} package. | ||
− | == | + | == Usage == |
− | + | See {{man|1|gs}}. | |
− | == ps2pdf == | + | === ps2pdf === |
− | + | ''ps2pdf'' is a wrapper around ghostscript to convert PostScript to PDF: | |
− | |||
− | === | + | $ ps2pdf -sPAPERSIZE=a4 -dOptimize=true -dEmbedAllFonts=true YourPSFile.ps |
− | + | Explanation: | |
− | |||
− | |||
− | |||
− | === | + | * with {{ic|1=-sPAPERSIZE=something}} you define the paper size. For valid PAPERSIZE values, see [http://ghostscript.com/doc/current/Use.htm#Known_paper_sizes]. |
+ | * {{ic|1=-dOptimize=true}} let's the created PDF be optimised for loading | ||
+ | * {{ic|1=-dEmbedAllFonts=true}} makes the fonts look always nice | ||
− | + | {{Note|You cannot choose the paper orientation in ps2pdf. If your input PS file is healthy, it already contains the orientation information. If you are trying to use an Encapsulated PS file, you will have problems, if it does not fit in the {{ic|1=-sPAPERSIZE}} you specified, because EPS files usually do not contain paper orientation informaiton. a workaround is creating a new paper in ghostscript settings (call it e.g. "slide") and use it as {{ic|1=-sPAPERSIZE=slide}}.}} | |
+ | |||
+ | == See also == | ||
+ | |||
+ | * [https://www.ghostscript.com/ Official website] |
Revision as of 15:19, 11 October 2018
Ghostscript is an interpreter for PostScript and PDF.
Contents
Installation
Install the ghostscript package.
Usage
See gs(1).
ps2pdf
ps2pdf is a wrapper around ghostscript to convert PostScript to PDF:
$ ps2pdf -sPAPERSIZE=a4 -dOptimize=true -dEmbedAllFonts=true YourPSFile.ps
Explanation:
- with
-sPAPERSIZE=something
you define the paper size. For valid PAPERSIZE values, see [1]. -dOptimize=true
let's the created PDF be optimised for loading-dEmbedAllFonts=true
makes the fonts look always nice
Note: You cannot choose the paper orientation in ps2pdf. If your input PS file is healthy, it already contains the orientation information. If you are trying to use an Encapsulated PS file, you will have problems, if it does not fit in the
-sPAPERSIZE
you specified, because EPS files usually do not contain paper orientation informaiton. a workaround is creating a new paper in ghostscript settings (call it e.g. "slide") and use it as -sPAPERSIZE=slide
.