BarcodeOptions constructor

init

Initializes a new instance of the BarcodeOptions class with default values.

def __init__(self):
    ...

init

Initializes a new instance of the BarcodeOptions class with the rectangular area.

def __init__(self, rectangle):
    ...
Parameter Type Description
rectangle groupdocs.parser.data.Rectangle The rectangular area that contains barcodes.

init

Initializes a new instance of the BarcodeOptions class with quality settings and code types.

def __init__(self, image_quality, barcode_quality, code_types):
    ...
Parameter Type Description
image_quality groupdocs.parser.options.QualityMode The quality of a source image.
barcode_quality groupdocs.parser.options.QualityMode The quality of a source barcode.
code_types list The types of barcodes to read.

init {#groupdocs.parser.data.Rectangle-groupdocs.parser.options.QualityMode-groupdocs.parser.options.QualityMode-System.Nullable`1[[System.Single]]-bool-list}

Constructs a new instance of BarcodeOptions

def __init__(self, rectangle, image_quality, barcode_quality, dimension, allow_incorrect_barcodes, code_types):
    ...
Parameter Type Description
rectangle groupdocs.parser.data.Rectangle
image_quality groupdocs.parser.options.QualityMode
barcode_quality groupdocs.parser.options.QualityMode
dimension System.Nullable`1[[System.Single]]
allow_incorrect_barcodes bool
code_types list

See Also