Package-level declarations

Types

Link copied to clipboard

Represents which part/region of a given square type a particular, single square is.

Link copied to clipboard
data class QRCodeSquare(var dark: Boolean, val row: Int, val col: Int, val moduleSize: Int, val squareInfo: QRCodeSquareInfo = QRCodeSquareInfo(DEFAULT, UNKNOWN), val rowSize: Int = 1, val colSize: Int = 1, val parent: QRCodeSquare? = null)

Represents a single QRCode square unit. It has information about its "color" (either dark or bright), its position (row and column) and what it represents.

Link copied to clipboard
data class QRCodeSquareInfo(val type: QRCodeSquareType, val region: QRCodeRegion)

Returns information on the square itself. It has the type of square and its region within its relative type.

Link copied to clipboard

The types available for squares in a QRCode.