0

我创建了一个生成 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

这是我目前使用的程序的快照:

在此处输入图像描述

4

1 回答 1

1

这似乎是 DPI 和打印尺寸的问题。

pixels/dpi=inches

或者如果你走另一条路

inches x dpi = pixels

您可以将软件中的 DPI 下拉菜单设置为必要的值。

请参阅此计算器以使用这些值:http ://auctionrepair.com/pixels.html

于 2013-04-01T19:44:10.693 回答