通过将原始数据发送到打印机,以Arial字体或任何其他字体打印
private void printfunction(string cmd)
{
string command = cmd;
// Create a buffer with the command
Byte[] buffer = new byte[command.Length];
buffer = System.Text.Encoding.ASCII.GetBytes(command);
// Use the CreateFile external functo connect to the LPT1 port
SafeFileHandle printer = CreateFile("LPT1:", FileAccess.ReadWrite, 0, IntPtr.Zero, FileMode.Open, 0, IntPtr.Zero);
// Aqui verifico se a impressora é válida
if (printer.IsInvalid == true)
{
MessageBox.Show("Printer not found!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// Open the filestream to the lpt1 port and send the command
FileStream lpt1 = new FileStream(printer, FileAccess.ReadWrite);
lpt1.Write(buffer, 0, buffer.Length);
// Close the FileStream connection
lpt1.Close();
}
我一直在使用上面的代码功能将原始数据发送到我的ESC / POS支持的EPSON TM88III打印机。
我在打印机中默认只发送了3个字体。但我不想在ARIAL FONT中打印。我们如何以Arial字体打印。
请不要建议我使用Windows打印后台处理程序或打印机驱动程序。我想通过发送原始数据进行打印。
我们应该怎么做?
编码使用Visual Studio 2008在C#.NET中完成。
没有找到相关结果
已邀请:
4 个回复
芯伶句餐绕
悍蕾驮苇袜
吐兄
课刊灭似