How can I convert .eps to .pdf inside Mathematica (perhaps using GhostScript?)?
相关问题
- Puzzled by Function body evaluation
- how to overload Times and Plus for matrix multipli
- AOSP Build TARGET_PRODUCT fails
- Modifying a Graphics3D object generated by Paramet
- Mathematica “AppendTo” function problem
相关文章
- histogram without vertical lines in Mathematica
- Entering data with Input[] in mathematica
- Using Fold to calculate the result of linear recur
- Rasterize PDF's with font not embedded using G
- How should I write a function to be used in Apply
- NMinimize eats all memory b/c of unnecessary symbo
- Mathematica: set default value for argument to non
- how does mathematica determine which rule to use f
After installing GhostScript and setting appropriate environment variables (for Windows you should add
gs\bin
andgs\lib
to thePATH
, wheregs
is the top-level Ghostscript directory) you can use Jens Nöckel's method for converting .eps to .pdf (all the glyphs will be outlined):Here
gswin64c.exe
is the name of GhostScript executable for 64bit Windows systems, for Linux replace it withgs
.Another method based on Kurt Pfeifle' code (without font outlining):
Here
c:/windows/fonts
is the directory where fonts are located. See also here for information about GhostScript command line parameters.