有人可以推荐(免费用于商业用途)库来生成EAN-13条形码吗?
我不需要图像,只需要一个字符串。
我想将产品代码,制造商代码和国家/地区(不是数字系统)作为参数传递。
它可以将国家/地区转换为数字系统,将它们连接在一起并计算校验和。
答案 0 :(得分:0)
基本上: Ean13是基于模型的校验和计算:
所以你有12个数字没有校验和,然后添加校验和
CheckSum功能:
public static string CalculateEan13(string country, string manufacturer, string product)
{
string temp = $"{country}{manufacturer}{product}";
int sum = 0;
int digit = 0;
// Calculate the checksum digit here.
for (int i = temp.Length; i >= 1; i--)
{
digit = Convert.ToInt32(temp.Substring(i - 1, 1));
// This appears to be backwards but the
// EAN-13 checksum must be calculated
// this way to be compatible with UPC-A.
if (i % 2 == 0)
{ // odd
sum += digit * 3;
}
else
{ // even
sum += digit * 1;
}
}
int checkSum = (10 - (sum % 10)) % 10;
return $"{temp}{checkSum}";
}
如何自己计算校验位
条形码编号示例:501234576421
步骤1:从右侧开始将所有备用号码加在一起
5 0 1 2 3 4 5 7 6 4 2 1
0 + 2 + 4 + 7 + 4 + 1 = 18
第2步:将答案乘以3
18 x 3 = 54
步骤3:现在将剩余数字加在一起
5 0 1 2 3 4 5 7 6 4 2 1
5 + 1 + 3 + 5 + 6 + 2 = 22
第4步:将第2步和第3步一起添加
54 + 22 = 76
步骤5:步骤4和下一个第10个数字之间的差异:
76 + 4 = 80
检查数字= 4