Package-level declarations

Types

Link copied to clipboard
class QRCode @JvmOverloads constructor(val data: String, val squareSize: Int = DEFAULT_SQUARE_SIZE, val colorFn: QRCodeColorFunction = DefaultColorFunction(), val shapeFn: QRCodeShapeFunction = DefaultShapeFunction(squareSize, innerSpace = 0), var graphicsFactory: QRCodeGraphicsFactory = QRCodeGraphicsFactory(), errorCorrectionLevel: ErrorCorrectionLevel = ErrorCorrectionLevel.VERY_HIGH, minTypeNum: Int = 6, forceMinTypeNum: Boolean = false, doBefore: QRCode.(QRCodeGraphics, Int, Int) -> Unit = EMPTY_FN, doAfter: QRCode.(QRCodeGraphics, Int, Int) -> Unit = EMPTY_FN)

A simple class to create easily create aesthetic pleasing QRCodes.

Link copied to clipboard
class QRCodeBuilder @JvmOverloads constructor(shape: QRCodeShapesEnum, customShapeFunction: QRCodeShapeFunction? = null)
Link copied to clipboard