跳轉到主要內容
BarcodeOrientationEnum 列舉常數用於表示 ABBYY FineReader Engine 可偵測的條碼方向類型。BarcodeParams 物件會使用這些常數。
typedef enum {
 BO_Unknown       = 0x00000000,
 BO_Left_To_Right = 0x00000001,
 BO_Down_To_Top   = 0x00000002,
 BO_Right_To_Left = 0x00000004,
 BO_Top_To_Down   = 0x00000008,
 BO_Autodetect    = BO_Left_To_Right | BO_Down_To_Top | BO_Right_To_Left | BO_Top_To_Down
} BarcodeOrientationEnum;

元素

名稱說明
BO_Autodetect自動偵測條碼方向。
BO_Down_To_Top條碼方向為自下而上。
BO_Left_To_Right條碼方向為由左至右。
BO_Right_To_Left條碼方向為由右至左。
BO_Top_To_Down條碼方向為自上而下。
BO_Unknown表示未知的條碼方向類型。若 ABBYY FineReader Engine 無法偵測條碼方向,則可能會將其作為回傳值。

用於

IBarcodeParams::Orientation