我正在使用第三方控件從位圖文件中讀取條形碼。以下是我的方法的代碼。C#中的GDI +發生了一般性錯誤
public void ShowBarcode(IntPtr img)
{
int nBarCode;
SoftekBarcodeLib2.BarcodeReader barcode = new SoftekBarcodeLib2.BarcodeReader();
barcode.ReadCode39 = 1;
barcode.ReadNumeric = 1;
nBarCode = barcode.ScanBarCodeFromBitmap(img);
for (int i = 1; i <= nBarCode; i++)
{
MessageBox.Show(barcode.GetBarString(i));
}
}
出於某種原因,我得到上述錯誤在 barcode.ScanBarCodeFromBitmap IMG的值是65863972
你從哪裏得到該參數'IntPtr img'? – 2010-06-17 20:37:50