gpt4 book ai didi

c# - 如何知道 EPSON TM-88IV 型热敏打印机上的纸张已用完

转载 作者:行者123 更新时间:2023-11-30 17:12:18 28 4
gpt4 key购买 nike

我有 EPSON 热敏打印机,型号为 TM-88IV。我能够获得打印机的各种属性,但找不到任何属性来获得以下状态:

  1. 论文用完了
  2. 打印机处于错误状态
  3. 打印机已关闭

我正在使用以下代码:

string printerName = "EPSON";
string query = string.Format("SELECT * from Win32_Printer WHERE Name LIKE '%{0}%'", printerName);
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
ManagementObjectCollection coll = searcher.Get();

foreach (ManagementObject printer in coll)
{
MessageBox.Show(printer.Properties["Name"].Name + " - " + printer.Properties["Name"].Value
+ "\n" +
printer.Properties["PrinterStatus"].Name + " - " + printer.Properties["PrinterStatus"].Value
+ "\n" +
printer.Properties["DetectedErrorState"].Name + " - " + printer.Properties["DetectedErrorState"].Value
+ "\n" +
printer.Properties["ExtendedDetectedErrorState"].Name + " - " + printer.Properties["ExtendedDetectedErrorState"].Value
+ "\n" +
printer.Properties["ExtendedPrinterStatus"].Name + " - " + printer.Properties["ExtendedPrinterStatus"].Value
);
}

我得到了上述属性的各种值,但无法将其映射到打印机的状态。

输出是

Name: EPSON TM-T88IV
PrinterStatus : 3
DetectedErrorState: 0
ExtendedDetectedErrorState: 0
ExtendedPrinterStatus: 2

我已经安装了随打印机一起提供的 CD 中的 EPSON TM-88IV 驱动程序。

最佳答案

显然 DetectedErrorStateExtendedDetectedErrorState 显示 0,这意味着 Unknown。这是否意味着这台打印机不支持此属性,您当前的驱动程序不支持它,或者其他什么 - 我不知道。此外,您的 ExtendedPrinterStatus 显示 2,这意味着 Unknown

您的 PrinterStatus 显示 3,这意味着 Idle 因此您无法从中收集任何有用的信息。

尝试查询 PrinterState。虽然这是一个远景,因为这个属性被标记为过时,但是嘿,这只是一行代码,看看它会返回什么。

有关每个返回值含义的更多信息已找到 here

编辑
由于此打印机应支持自动返回状态 (ASB) 通知,因此您可以直接从打印机读取该状态,而无需使用 WMI。 Refer to this SO question有关 ASB 的详细信息。 Here is the specification for your printer

关于c# - 如何知道 EPSON TM-88IV 型热敏打印机上的纸张已用完,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10832719/

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