Package-level declarations

Types

Link copied to clipboard
open class CircleShapeFunction @JvmOverloads constructor(val squareSize: Int = DEFAULT_CELL_SIZE, innerSpace: Int = defaultInnerSpace(squareSize)) : RoundSquaresShapeFunction

Creates circles instead of squares while drawing the QRCode. By default, the circles will keep 8% of the squareSize pixels away from each other, to have a more pleasing aesthetics.

Link copied to clipboard
open class DefaultShapeFunction(val squareSize: Int = DEFAULT_CELL_SIZE, innerSpace: Int = 1) : QRCodeShapeFunction
Link copied to clipboard

Function to render (draw) a single square.

Link copied to clipboard
open class RoundSquaresShapeFunction @JvmOverloads constructor(val squareSize: Int = DEFAULT_CELL_SIZE, radius: Int = defaultRadius(squareSize), innerSpace: Int = defaultInnerSpace(squareSize)) : DefaultShapeFunction

Creates "rounded squares" as the shapes on the QRCode.