You are here: Start » AVL.NET » Invoke.ReadSingleCode_Z

Invoke.ReadSingleCode_Z

Reads a single 1D barcode or a PDF417 code.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ReadSingleCode_Z
(
	Avl.ZCode_State ioState,
	Avl.Image inImage,
	Optional<string> inLoadConfigFile,
	Optional<string> inSaveConfigFile,
	Optional<int> inTimeout,
	Optional<int> inThreadCount,
	Avl.Code1DSettings inCode1DSettings,
	bool inEnablePDF417,
	bool inEnableCode128,
	bool inEnableCode39,
	bool inEnableCode93,
	bool inEnableInterleaved2of5,
	bool inEnableNoRead,
	bool inEnableQualityMetrics,
	Conditional<Avl.ZResult> outResult,
	Conditional<Avl.ZQualityMetrics> outQualityMetrics,
	Conditional<Avl.ZNoReadResult> outNoReadResult
)

Parameters

Name Type Range Default Description
ioStateAvl.ZCode_State
inImageAvl.ImageInput image.
inLoadConfigFileAtl.Optional<string>Configuration file to be loaded in .bin format. Used to restore previously saved settings - can overwrite other parameters. Default value: atl::NIL.
inSaveConfigFileAtl.Optional<string>Path to save configuration file in .bin format. Used to save current settings for future use. Default value: atl::NIL.
inTimeoutAtl.Optional<int><1, INF>Processing timeout in ms. Default value: atl::NIL.
inThreadCountAtl.Optional<int><1, 31>Number of processing threads. Default value: atl::NIL.
inCode1DSettingsAvl.Code1DSettingsCode1D settings.
inEnablePDF417boolTrueDefault value: True.
inEnableCode128boolTrueDefault value: True.
inEnableCode39boolFalseDefault value: False.
inEnableCode93boolFalseDefault value: False.
inEnableInterleaved2of5boolFalseDefault value: False.
inEnableNoReadboolFalseEnable return of the no read results. Default value: False.
inEnableQualityMetricsboolFalseEnable return of quality metrics. Default value: False.
outResultAtl.Conditional<Avl.ZResult>Decode results.
outQualityMetricsAtl.Conditional<Avl.ZQualityMetrics>Quality metrics of decoded codes.
outNoReadResultAtl.Conditional<Avl.ZNoReadResult>No read result - code outline with the reason why it was not decoded.

See also