我正在尝试使用Python打印PDF,而不打开PDF查看器应用程序(Adobe,Foxit等)。我还需要知道打印完成的时间(删除文件)。
Here我发现了实施:
import win32ui, dde, os.path, time
from win32api import FindExecutable
from os import spawnl, P_NOWAIT
...
pd = "C:\\temp\\test.pdf"
pdbits = os.path.split(pd)
readerexe = FindExecutable(pdbits[1],pdbits[0])
spawnl(P_NOWAIT,readerexe[1],"DUMMY") #I added "DUMMY" to avoid a weird error
time.sleep(2)
s = dde.CreateServer()
s.Create('')
c = dde.CreateConversation(s)
c.ConnectTo('acroview', 'control')
c.Exec('[FilePrintSilent("%s")]' % (pd,))
s.Destroy()
但它会在ConnectTo
行抛出此异常:
dde.error: ConnectTo failed
有人知道如何解决它吗?或者有一个不同的解决方案用于静音打印?或者在列表中可以提供指向ConnectTo
的参考的链接?在网上找不到任何关于它的内容。
使用:Python 2.7,Windows 7,Acrobat Reader 10.0
答案 0 :(得分:20)