【发布时间】:2011-07-19 13:43:33
【问题描述】:
我正在使用 C# 在 ASP.NEt 中解码条形码图像。 在此我参考website。 在此,我不明白函数中的 (int start) 和 (int end) 参数是什么 读取条形码。 请告诉如何找到 int start 和 int end 参数。
【问题讨论】:
标签: c# image using barcode decode
我正在使用 C# 在 ASP.NEt 中解码条形码图像。 在此我参考website。 在此,我不明白函数中的 (int start) 和 (int end) 参数是什么 读取条形码。 请告诉如何找到 int start 和 int end 参数。
【问题讨论】:
标签: c# image using barcode decode
尝试 Zxing.net 它有助于将条形码位图图像转换为条形码文本尝试使用 Nuget 包安装或尝试此链接 https://github.com/micjahn/ZXing.Net
或尝试 Neudynamic 条码 SDK
【讨论】:
它看起来是图像扫描的 y 坐标开始和停止。
例如 如果提供 10 和 20,它将尝试在图像中从左到右从 Y 坐标 10 到 20 的区域中查找条码。
【讨论】: