我想在C或C#中编写一个应用程序,该应用程序在安装时将作为打印机驱动程序.它将在“打印”对话框的下拉列表中可用,但不会打印它将调用到我的代码中.
我认为@L_404_0@可能会提供一些界面来编写打印机驱动程序.
Windows提供了大量的接口.你知道要写什么样的打印机驱动程序?目前,Windows支持三种打印机驱动程序 – PostScript,Unidrv和XPSDrv(后者在XP / 2003 Server与EP 1.0及以上版本上).大多数情况下,写入驱动程序插件就足够了.阅读INF架构,以了解这些事情的安装,特别是有关minidrivers的部分.
原文链接:https://www.f2er.com/windows/370568.html如所建议的,您将需要WDK才能构建驱动程序或其插件.请注意,驱动程序不使用Visual Studio IDE或编译器. WDK自带的编译器.你可以随时用VS连接,但这是一个不同的故事.
WDK已经设置了针对不同的操作系统.您将不得不知道您想要解决的操作系统(或OS-es),并选择适当的设置.
I want to write a simple driver that will displays in the list of printers.
我看不出有什么帮助.如果您正在编写一个驱动程序,为什么要列出系统中存在的所有其他驱动程序?
Printing to this driver will call into my code so that I can do stuff like create a PDF of the document,calling the Web Service etc.