Enum BarcodeQualityMode

Enum BarcodeQualityMode

Namespace: Aspose.BarCode.BarCodeRecognition
Assembly: Aspose.BarCode.dll (25.1.0)

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

public enum BarcodeQualityMode

Fields

High = 0

يمكّن طرق التعرف على باركودات عالية الجودة.

Low = 2

يمكّن طرق التعرف على باركودات منخفضة الجودة.

Normal = 1

يمكّن طرق التعرف على باركودات ذات جودة عادية (طبيعية).

Examples

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

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);
}
 عربي