如何获取 Postscript 文件对象的名称?
How do I get the name of Postscript file object?
使用 Postscript,我想检索正在执行的文件的名称。我知道我可以使用 'currentfile' 获取文件对象,但是如何获取它的名称?
我想在文档中包含姓名。
谢谢。
Ghostscript 有一个 .filename
operator 可以做到这一点。不知道便携性。微小的可见示例:
/Times-Roman findfont
12 scalefont
setfont
newpath
100 200 moveto
currentfile .filename pop show
使用 Postscript,我想检索正在执行的文件的名称。我知道我可以使用 'currentfile' 获取文件对象,但是如何获取它的名称?
我想在文档中包含姓名。
谢谢。
Ghostscript 有一个 .filename
operator 可以做到这一点。不知道便携性。微小的可见示例:
/Times-Roman findfont
12 scalefont
setfont
newpath
100 200 moveto
currentfile .filename pop show