我创建了一个生成 PDF417 二维条码的工具。输出 png 文件为 290x78 像素。
此宽度和高度背后的原因是用于创建此符号的公式,以便条形码扫描仪正确读取它。
我的符号是 13 列和 39 行。
这个公式是:
Width = ((17 * # of columns) + 69) X + 2 (size of quiet zone)
Height = (# of rows) (row height) + 2 (size of quiet zone)
所以:
17 * 13 + 69 = 290px
39 * 2 = 78px
我的问题是我用来创建这些条形码的软件允许您将文件保存到这个大小,但以不同的大小打印它。
这些打印参数结果如下,但我不知道如何计算它们:
X Dimension (in) :0.0067
Y Dimension (in) :0.0133
Height x Width (in) :0.52 x 1.93
Height x Width (mm) :13.21 x 49.11
Rows x Columns : 39 x 13
Error Correction Level :5
Bytes Encoded :257
SLD Codeword :1
Data Codewords :157
Pad Codewords :285
MPDF Codewords :0
EC Codewords :64
Total Codewords :507
这是我目前使用的程序的快照: