QRCodeBuilder

class QRCodeBuilder @JvmOverloads constructor(shape: QRCodeShapesEnum, customShapeFunction: QRCodeShapeFunction? = null)(source)

Constructors

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

Functions

Link copied to clipboard
fun build(data: String): QRCode

Builds a QRCode instance ready to use.

Link copied to clipboard
fun forceInformationDensity(forceInformationDensity: Boolean): QRCodeBuilder

Force the QRCode to use the value of Information Density specified. Defaults to false.

Link copied to clipboard

Run a piece of code after the rendering is done.

Link copied to clipboard

Background color of the QRCode.

Link copied to clipboard

Run a piece of code before the rendering is done.

Link copied to clipboard

Color of the cells of the QRCode.

Link copied to clipboard

Sets the QRCode.colorFn value to a custom one. If set, the builder will ignore color and background.

Link copied to clipboard

Sets the QRCode.shapeFn value to a custom one. If set, the builder will ignore the shape parameter.

Link copied to clipboard

The level of error correction to apply to the QR Code. Defaults to ErrorCorrectionLevel.VERY_HIGH.

Link copied to clipboard
fun withGradientColor(startColor: Int, endColor: Int?, vertical: Boolean = true): QRCodeBuilder

Uses a LinearGradientColorFunction to choose colors for the QRCode.

Link copied to clipboard

Use a custom QRCodeGraphicsFactory instead of the default.

Link copied to clipboard

The level of "information density" this QRCode will maintain. Defaults to 6.

Link copied to clipboard
fun withInnerSpacing(innerSpacing: Int? = null): QRCodeBuilder

How much space there should be around each QRCode Cell. Defaults to 1 pixel, or 0 if a custom shape function is being used.

Link copied to clipboard
fun withLogo(logo: ByteArray?, width: Int, height: Int, clearLogoArea: Boolean = true): QRCodeBuilder

Adds an image on top of the QRCode, at the center of it.

Link copied to clipboard

Radius of the edges of the Rounded Squares. Only applies for Rounded Squares. If set to a negative number, the default radius will be used.

Link copied to clipboard

Changes the Shape of the QRCode.

Link copied to clipboard

Size of each individual space in the QRCode (each cell).