[LinuxFocus-icon]
<--  | 站点地图  | 索引  | 搜索

新闻 | 过往期刊 | 链接 | 关于LF
This document is available in: English  ChineseGB  Francais  

Gerrit photo
by Gerrit Renker
<gerrit.renker(at)gmx.de>

关于作者:
在 Gerrit 接触 C 和 Linux 后,他才开始喜欢上使用电脑。
目录:

 

LF tip: 在 KDE 里和 kprinter 一起使用 Adobe Acrobat Reader 7

[Illustration]

摘要:

这是一个小技巧,从现在开始,LinuxFocus每月都会至少提供一个这样的技巧。 如果你有有关这些小技巧的新想法,请发邮件到:guido(at)linuxfocus.org。

_________________ _________________ _________________

 

问题

Acrobat 7 现在终于有了 Linux 版可用了,这是个很好的 PDF 阅读器。 不幸的是,打印文档时,不等 KDE 系统(的kprinter 程序)结束打印,它就将输出文件给删除了。  

解决办法

写一个脚本程序来创建一个临时文件(postscript 的输出),然后完成打印后再删除。
#!/bin/sh
# save this as /usr/local/bin/printerScript
# and make it executable with: chmod 755 /usr/local/bin/printerScript
## create temporary file
tmp="/tmp/postscript-print-$$.ps"
[ -f "$tmp" ] && exit 1
## save the file to a new name which will not be deleted by acroread.
## the first argument is the file name of the postscript file
cp  "$1"  $tmp
## start the KDE printer frontend on this file
kprinter  $tmp
## clean up afterwards
rm -f     $tmp
##
下面是一个在 acroread 里的打印机设置面板的截屏:
[acroread printer config panel]
 

对这篇文章发表评论

每篇文章都有各自的反馈页面。在这个页面里,您可以提交评论,也可以查看其他读者的评论:




主页由LinuxFocus编辑组维护
© Gerrit Renker
"some rights reserved" see linuxfocus.org/license/
http://www.LinuxFocus.org
翻译信息:
en --> -- : Gerrit Renker <gerrit.renker(at)gmx.de>
en --> zh_CN: 小汪 <daxiawj{at}gmail.com>

2005-07-07, generated by lfparser version 2.52