RoundSquaresShapeFunction

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

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

By default, the value is set to squareSize / 4

Inheritors

Constructors

Link copied to clipboard
constructor(squareSize: Int = DEFAULT_CELL_SIZE, radius: Int = defaultRadius(squareSize), innerSpace: Int = defaultInnerSpace(squareSize))

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open fun beforeRender(qrCode: QRCode, qrCodeGraphics: QRCodeGraphics)

Called before rendering starts, to set up something if needed

Link copied to clipboard
open override fun drawRect(x: Int, y: Int, width: Int, height: Int, color: Int, thickness: Double, canvas: QRCodeGraphics)

The function to actually draw the outline of a cell. Extend this to easily create your own shape :)

Link copied to clipboard
open override fun fillRect(x: Int, y: Int, width: Int, height: Int, color: Int, canvas: QRCodeGraphics)

The function to actually draw a filled cell. Extend this to easily create your own shape :)

Link copied to clipboard
open override fun renderControlSquare(xOffset: Int, yOffset: Int, colorFn: QRCodeColorFunction, square: QRCodeSquare, canvas: QRCodeGraphics, qrCode: QRCode)

Renders a control square (those bigger ones on the edges).

Link copied to clipboard
open override fun renderSquare(x: Int, y: Int, colorFn: QRCodeColorFunction, square: QRCodeSquare, canvas: QRCodeGraphics, qrCode: QRCode)

Renders a single square.