Enum ComplexBackgroundMode
Enum ComplexBackgroundMode
ชื่อพื้นที่: Aspose.BarCode.BarCodeRecognition การประกอบ: Aspose.BarCode.dll (25.4.0)
โหมดที่ช่วยหรือปิดการรับรู้เพิ่มเติมของรหัสบาร์สีบนภาพสี
public enum ComplexBackgroundMode
Fields
Auto = 0
ในเวลานี้เดียวกันกับ Disabled ปรับการรับรู้เพิ่มเติมของรหัสบาร์สีบนภาพสี
Disabled = 1
ป้องกันการรับรู้เพิ่มเติมของรหัสบาร์สีบนภาพสี
Enabled = 2
ช่วยให้การรับรู้เพิ่มเติมของรหัสบาร์สีบนภาพสี
Examples
ตัวอย่างนี้แสดงให้เห็นวิธีการใช้โหมด ComplexBackground
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.Code39Extended, DecodeType.Code128))
{
reader.QualitySettings.ComplexBackground = ComplexBackgroundMode.Enabled;
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine(result.CodeText);
}