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

Invoke.ReadMultipleCodes_Z

Reads multiple 1D barcodes and PDF417 codes.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ReadMultipleCodes_Z
(
	Avl.ZCode_State ioState,
	Avl.Image inImage,
	Optional<string> inLoadConfigFile,
	Optional<string> inSaveConfigFile,
	Optional<int> inTimeout,
	Optional<int> inThreadCount,
	Optional<int> inMaxCodeCount,
	bool inIssueIdenticalSymbols,
	Avl.Code1DSettings inCode1DSettings,
	bool inEnablePDF417,
	bool inEnableCode128,
	bool inEnableCode39,
	bool inEnableCode93,
	bool inEnableInterleaved2of5,
	bool inEnableNoRead,
	bool inEnableQualityMetrics,
	List<Avl.ZResult> outResult,
	List<Avl.ZQualityMetrics> outQualityMetrics,
	List<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.
inMaxCodeCountAtl.Optional<int><1, INF>Maximum number of codes. Default value: atl::NIL.
inIssueIdenticalSymbolsboolTrueIssue identical symbols. Default value: True.
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.
outResultSystem.Collections.Generic.List<Avl.ZResult>Decode results.
outQualityMetricsSystem.Collections.Generic.List<Avl.ZQualityMetrics>Quality metrics of decoded codes.
outNoReadResultSystem.Collections.Generic.List<Avl.ZNoReadResult>No read result - code outline with the reason why it was not decoded.

See also