我现在正在尝试用 C# 编写一个简单的程序,该程序向打印机发送命令以打印纯文本,但不知道如何操作。我现在面临两个主要问题:
1、如何与打印机通讯?
在做了一些谷歌搜索但没有得到满意的结果后,我去了 Brothers 的主页,发现那里有一个所谓的 b-PAC3 SDK。
b-PAC* 软件开发工具包是一款适用于 Microsoft® Windows® 的软件工具,允许在您自己的应用程序中打印自定义标签。
下载并安装后,在安装目录中,我找到了一个名为“Samples”的文件夹——里面有一些用不同语言(VB、VS、VSC……)编写的示例代码,我希望这些示例代码能工作,因为这个 SDK 和打印机来自同一家公司。但他们没有。让我在这里向您展示其中一个示例:(C# 中的代码)
/*************************************************************************
b-PAC 3.0 Component Sample (RfidRW)
(C)Copyright Brother Industries, Ltd. 2009
*************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleSampleCSharp
{
class Program
{
private const int NOERROR = 0;
private const string ANTENNA_READER_WRITER = "Reader/Writer side";
static void Main(string[] args)
{
// Create Rfid Instance
bpac.RfidClass rfid = new bpac.RfidClass(); // Rfid Instance
string selectedDevice; // selected device
/* GetInstalledDevices */
Console.WriteLine("==GetInstalledDevices()==");
object[] arrDevices = (object[])rfid.GetInstalledDevices();
if (rfid.ErrorCode == NOERROR)
{
Console.WriteLine("Succeed to GetInstalledDevices()");
int index = 0;
foreach (string device in arrDevices)
{
Console.WriteLine(String.Format("[{0}] {1}", index, device));
index++;
}
// select device
Console.WriteLine("Please Select Device");
int selectedDeviceIndex = int.Parse(Console.ReadLine());
selectedDevice = arrDevices[selectedDeviceIndex].ToString();
}
else
{
Console.WriteLine("Failed to GetInstalledDevices()");
goto CleanUp;
}
// ....
}
}
}
当我运行这段代码时,第一个问题就出现了:(它显示的和下面的引用完全一样,抱歉,由于声誉低,我无法发布图片):
==GetInstalledDevices()==
成功 GetInstalledDevices()
请选择设备
没有任何错误,但似乎程序找不到我的设备,我不知道为什么会发生这种情况。
2. 如何编写 QL 风格的命令?
我知道每种打印机都有自己的命令语言,所以在 Brother 的网站上搜索后,我找到了一个参考:
Brother QL 系列命令参考 (QL-500/550/560/570/580N/650TD/700/1050/1060N)
我自己没有使用热敏打印机的经验,不幸的是,此命令参考中没有任何示例,这让我很难弄清楚应该如何编写命令。
有没有人使用过 Brother QL 系列打印机?
PS:我使用的打印机是Brother QL 560。