如何获取Postscript文件对象的名称?

时间:2015-05-29 16:38:48

标签: filenames postscript

使用Postscript,我想检索正在执行的文件的名称。我知道我可以使用' currentfile'来获取文件对象,但如何获取其名称?

我想在文档中包含该名称。

感谢。

1 个答案:

答案 0 :(得分:2)

Ghostscript有.filename operator即可。不知道可移植性。微小的可见示例:

/Times-Roman findfont
12 scalefont
setfont
newpath
100 200 moveto
currentfile .filename pop show