701_tk
@701_tk

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

pythonでのpdf印刷について

解決したいこと

① 下記のpdfを印刷するPythonコードについて、印刷部数を設定する方法はありますでしょうか。for文で繰り返すとpdfを毎回開くので処理に時間がかかってしまいます。

② また下記コードを実行後、Acrobatが開いた状態なのですが、閉じるにはどうすればいいでしょうか。

該当するソースコード

import win32api, sys, os

if name == 'main':
os.chdir(os.path.dirname(os.path.abspath(file)))
path = os.getcwd()
pdf_file_name = os.path.join(path, "test.pdf")
print(pdf_file_name, os.path.exists(pdf_file_name))
win32api.ShellExecute(0, "print", pdf_file_name, None, ".", 0)

0

No Answers yet.

Your answer might help someone💌