使用 .NET的開發環境建置可以讀條碼的程式,
Nuget 安裝 IronBarCode 4.0.0.2
========================
using IronBarCode;
BarcodeResult result = BarcodeReader.QuicklyReadOneBarcode(@"barcode_testing1.jpg");
Console.WriteLine($"Barcoe Text: {result.Value}");
執行後會得到
System.MissingMethodException
HResult=0x80131513
Message=找不到方法: 'System.Collections.IEnumerator PdfSharp.Pdf.PdfPages.GetEnumerator()'。
我沒有使用pdfsharp 不知為何會有這樣的錯誤訊息出現?