gpt4 book ai didi

python - 收到打印作业 Python

转载 作者:太空狗 更新时间:2023-10-29 21:08:22 31 4
gpt4 key购买 nike

在假脱机期间在本地机器上最初请求打印作业时,我已经成功地触发了回调。但是,是否有 win32print 或类似的东西可以让我处理将打印作业传输到打印服务器或 USB 打印机的事件?

################################################################################
# Imports ######################################################################
################################################################################

from os.path import *
from printer import *
from watcher import *
from statvar import *

################################################################################
# Event Callback ###############################################################
################################################################################

def callback(code, event):

num = splitext(event)[0]
ext = splitext(event)[1]

if code == 1 and ext == '.SPL':
main(num.lstrip('0'))

################################################################################
# wx Event Handler #############################################################
################################################################################

def handling(*args):

wx.CallAfter(callback, *args)

################################################################################
# Create Listener ##############################################################
################################################################################

# listens to the spool directory for files

watch = Watcher(SPOOL_DIRECTORY, handling)

# set the appropriate flags for a listener

watch.flags = FILE_NOTIFY_CHANGE_FILE_NAME

################################################################################
# Start Listener ###############################################################
################################################################################

watch.start()

################################################################################
# Start wx App #################################################################
################################################################################

app = wx.App()
wx.Frame(None)
app.MainLoop()

################################################################################
################################################################################
################################################################################

最佳答案

这是一个在我的电脑 (Windows 8) 上可行的想法。它不是完全成熟的代码,但它可能会让你继续。您需要使用函数 FindFirstPrinterChangeNotificationFindNextPrinterChangeNotification 这些包含在客户端的 winspool.drv 中(令人恼火的是,您会发现它们被记录在 spoolSS.dll 中,但这是服务器端 - this diagram 可以澄清)。

可从MSDN here 获得可以监听的事件列表(重要的是,它们的标志设置) .最初我以为您想要 PRINTER_CHANGE_ADD_JOB (0x00000100),但我认为您实际上可能想要 PRINTER_CHANGE_WRITE_JOB (0x00000800)。这不会在作业开始假脱机时立即触发,但不幸的是,在您将一个文档发送到网络打印机的示例中,它似乎确实被触发了多次。

不幸的是,这些 API 没有在 win32print 库中公开。我认为,因此您必须深入研究 ctypes。在这里我没有注册回调,而是监听通知,当触发时我调用该函数并在无限循环中再次开始监听。该过程在收听时停滞。如果您需要传统的回调功能,您可以在它自己的线程中运行这个脚本,或者这个答案可能不适合您的需要。

注意 - 这只是监听正在请求的打印作业,然后调用一个函数。如果你想提取有关被触发的作业的信息,代码将变得可怕。进一步注意 - 它会触发开始并随后取消的打印作业,但我认为这很好。

from ctypes import *
from ctypes.wintypes import HANDLE, LPSTR

def add_job_callback():
print('A job has just been sent to the printer this script is monitoring')

spl = windll.LoadLibrary('winspool.drv')

printer_name = 'KONICA MINOLTA PS Color Laser Class Driver'
# Put the name of your printer here - can be networked or any installed on your computer. Alternatively, set it to None to use the local printer server
#printer_name = None

hPrinter = HANDLE()

if printer_name:
spl.OpenPrinterA(c_char_p(printer_name), byref(hPrinter),None)
else:
spl.OpenPrinterA(None, byref(hPrinter),None)

print(hPrinter)


hjob = spl.FindFirstPrinterChangeNotification(hPrinter,0x00000100,0, None)
# 0x00000100 is a flags setting to set watch for only PRINTER_CHANGE_ADD_JOB
while True:
windll.kernel32.WaitForSingleObject(hjob,-1)
#When this function returns, the change that you're monitoring for has been observed, trigger the function
add_job_callback()
spl.FindNextPrinterChangeNotification(hjob, None, None, None)

请注意,Python 2.7 和 Python 3 之间存在一些细微差异 - 例如从字符串初始化 c_char_p ctype。我在这里展示了我所能提供的最简单的版本——它适用于 2.7。


后记

我完成了所有繁重的工作,然后找到了 this answer ,那是重复的东西。它有更好的代码来处理 unicode 打印机名称等,但只查看默认的本地打印服务器。

关于python - 收到打印作业 Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34519642/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com