⑴ 斑馬400列印機的命令中bcn 100,y,n是什麼意思
100為產品編號
Y 為 列印在條碼上方
至n看是什麼格式的,不同的格式意義代表不同
^B2命令的格式:^B2o,h,f,g,e
^B2=交叉二五碼
n為不列印(No)
⑵ ZEBRA斑馬列印機,列印二維碼的命令是什麼呀
Print #1, "^BXN,8,200,,,," ''''''bxn 是列印二維碼命令
Print #1, "^FO100,130^FD" & " hello"& "^FS" '''''hello 為列印內容 前面是列印的位置
⑶ 斑馬列印機指令
廣州翰揚技術工程師可以給你作答:前面我已經回答了斑馬列印機指令^A0N代表的是什麼,即 ^A 命令可以指定要在文本欄位中使用的字體。 ^A 會指定當前 ^FD 語句或欄位的字體。不過因為截圖不全面,現在重新將圖發布出來,如下
⑷ 如何使用斑馬^BC指令列印各種code128條形碼
using System;
using System.IO;
using System.Collections.Generic;
using System.Text;
namespace Barcode
{
/*條碼列印命令說明
^XA //條碼列印指令開始
^MD30 //設置色帶顏色的深度, 取值范圍從-30到30
^LH60,10 //設置條碼紙的邊距
^FO20,10 //設置條碼左上角的位置
^ACN,18,10 //設置字體
^BY1.4,3,50 //設置條碼樣式。1.4是條碼的縮放級別,3是條碼中粗細柱的比例, 50是條碼高度
^BC,,Y,N //列印code128的指令
^FD12345678^FS //設置要列印的內容, ^FD是要列印的條碼內容^FS表示換行
^XZ //條碼列印指令結束
*/ //上面的指令會列印12345678的CODE128的條碼
public class BarcodePrint
{
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
private struct OVERLAPPED
{
int Internal;
int InternalHigh;
int Offset;
int OffSetHigh;
int hEvent;
}
[System.Runtime.InteropServices.DllImport("kernel32.dll")]
private static extern int CreateFile(string lpFileName, uint dwDesiredAccess, int dwShareMode, int lpSecurityAttributes, int dwCreationDisposition, int dwFlagsAndAttributes, int hTemplateFile);
[System.Runtime.InteropServices.DllImport("kernel32.dll")]
private static extern bool WriteFile(int hFile, byte[] lpBuffer, int nNumberOfBytesToWrite, out int lpNumberOfBytesWritten, out OVERLAPPED lpOverlapped);
[System.Runtime.InteropServices.DllImport("kernel32.dll")]
private static extern bool CloseHandle(int hObject);
private int iHandle;
public bool Open()
{
iHandle = CreateFile("LPT1:", (uint)FileAccess.ReadWrite, 0, 0, (int)FileMode.Open, 0, 0);
if (iHandle != -1)
{
return true;
}
else
{
return false;
}