将数据发送至热敏打印机
我的公司有Eltron 2543 热敏打印机。我正在开发一个 VB.NET 应用程序,其中包含 FedEx Web 服务来打印运输标签。
我可以毫无问题地保存数据文件,但我想知道如何将此数据流发送到网络上的共享打印机。我的解决方案中是否需要包含 Eltron 2543 驱动程序?有点迷失在这里,如果有人能指出我正确的方向,我会很高兴。
我尝试过的一些解决方案不起作用,所以我想我正在寻找一位处理过打印机(特别是热敏打印机)的专家来帮助我朝着正确的方向前进。
谢谢。
Possible Duplicate:
.NET code to send ZPL to Zebra printers
My company has a Eltron 2543 thermal printer. I'm developing an VB.NET application incorporating FedEx web services to print off shipping labels.
I can save off the data file without a problem, but I was wondering how I send this data stream to a shared printer on a network. Do I need to include the Eltron 2543 driver in my solution? Sort of lost here and would love if someone could point me in the right direction.
Some solutions I've tried haven't work so I guess I'm looking for an expert who has dealt with printers (particularly thermal) to get me moving in the right direction.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用Win32 后台处理程序函数。我一直使用此代码将 ZPL 打印作业直接发送到联网的 Zebra 热敏标签打印机。您可以发送字节、文件流或字符串。
我从来不需要任何驱动程序,只需要打印机的网络路径并且每次都能正常工作。
You want to use Win32 spooler functions. I use this code all the time to send ZPL print jobs directly to networked Zebra thermal label printers. You can send bytes, a file stream, or a string.
I've never needed any drivers, just the network path to the printer and its worked every time.