如何在 .NET 中访问打印机特定字体?
这个问题与从.NET打印API检索设备上下文...
我有一个 Datacard 295 浮雕机/磁条编码器。 为了写入磁条或浮雕轮,您必须以特殊的“伪字体”写入文本,打印机驱动程序将识别并适当处理该文本。 有多种字体,具体取决于您要写入轨道 1、轨道 2、大浮雕字母还是小字母。
不幸的是,.NET 仅直接支持 OpenType 和 TrueType 字体。
与我提到的问题不同,我没有技术指南来告诉我要传输什么。 对我来说,处理这个问题最简单的方法是找到一种使用 .NET 中的打印机字体的方法,无论采取什么措施。 如何在 .NET 中访问和使用打印机字体?
This question is along the same lines as Retrieving Device Context from .NET print API...
I have a Datacard 295 embosser / mag stripe encoder. In order to write to the Mag Stripe or Embosser wheel, you must write your text in a special "pseudo-font", which the printer driver will recognize and handle appropriately. There are multiple fonts, depending on whether you want to write to track 1, track 2, big embosser letters or small.
Unfortunately, .NET only directly supports OpenType and TrueType fonts.
Unlike the question I referenced, I have no tech guide to tell me what to transmit. The easiest way for me to handle the issue is to find a way to use the printer fonts from .NET, whatever that takes. How can I access and use printer fonts in .NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法直接从 .NET 执行此操作,因此必须在设备上下文上使用 Win32 调用来使用“伪字体”进行渲染。 示例代码位于此处 展示了如何执行此操作:
You can't do this directly from .NET, so you have to use Win32 calls on the device context to render using the "pseudo-font". The sample code available here shows how to do this: