PDF417 Dimensions

Defined in package com.scandit.datacapture.barcode.generator

Pdf417Dimensions
class Pdf417Dimensions

Added in version 8.3.0

Dimensions configuration for PDF417 barcode generation. This class allows you to control the minimum and maximum number of rows and columns in the generated barcode. All properties are optional and can be left unset (null).

Encoding will fail if incompatible dimensions are defined (e.g., if the data cannot fit within the specified constraints).

Pdf417Dimensions()
Pdf417Dimensions(minCols: Int?,
        maxCols: Int?,
        minRows: Int?,
        maxRows: Int?)

Added in version 8.3.0

Creates a new PDF417Dimensions instance with all properties set to null.

minCols
val minCols: Int?

Added in version 8.3.0

Minimum number of columns in the PDF417 barcode. Default is null (unset).

maxCols
val maxCols: Int?

Added in version 8.3.0

Maximum number of columns in the PDF417 barcode. Default is null (unset).

minRows
val minRows: Int?

Added in version 8.3.0

Minimum number of rows in the PDF417 barcode. Default is null (unset).

maxRows
val maxRows: Int?

Added in version 8.3.0

Maximum number of rows in the PDF417 barcode. Default is null (unset).