此条形码:
将不会解码。无法解码的图片有什么问题。
string barcodePng = "tmp.png";
reader = new BarcodeReader();
reader.Options.PossibleFormats = new List<BarcodeFormat>();
reader.Options.PossibleFormats.Add(BarcodeFormat.CODE_39);
reader.Options.TryHarder = true;
using (var barcodeBitmap = new Bitmap(barcodePng))
{
var result = reader.Decode(barcodeBitmap);
if (result != null)
{
Console.WriteLine("barcode did not decode");
}
}
此图像与其他数千个已解码的图像不同,因为我不得不修复由于损坏而剪切掉的原始.tif文件。我通过将其转换为.pdf并恢复为.tif对其进行了修复。