Enum BarcodeQualityMode

Enum BarcodeQualityMode

اسم الفضاء : Aspose.BarCode.BarCodeRecognition تجميع: Aspose.BarCode.dll (25.4.0)

الوضع الذي يتيح للأساليب التعرف على عناصر الرمز الشريط مع الجودة المختارة.العنصر الرمزي مع جودة منخفضة يتطلب طرق أكثر صعوبة مما يبطئ الاعتراف.

public enum BarcodeQualityMode

Fields

High = 0

يتيح أساليب التعرف على رموز الشريط عالية الجودة.

Low = 2

يتيح أساليب التعرف على رموز الشريط منخفضة الجودة.

Normal = 1

يتيح أساليب التعرف على رموز الشريط المشتركة (الطبيعية) الجودة.

Examples

هذا العينة تظهر كيفية استخدام وضع BarcodeQuality

using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.Code39Extended, DecodeType.Code128))
{
    reader.QualitySettings.BarcodeQuality = BarcodeQualityMode.Low;
    foreach (BarCodeResult result in reader.ReadBarCodes())
        Console.WriteLine(result.CodeText);
}
 عربي