Package-level declarations

Types

Link copied to clipboard
object Colors

Just a lot of colors to use when drawing :)

Link copied to clipboard
typealias ColorType = Int
Link copied to clipboard
open class DefaultColorFunction(foreground: Int = Colors.BLACK, background: Int = Colors.WHITE) : QRCodeColorFunction

Default function for the QRCode cell color. Returns a color for the foreground ("dark") and another for the background and margin.

Link copied to clipboard
class LinearGradientColorFunction @JvmOverloads constructor(val startForegroundColor: Int, val endForegroundColor: Int, val backgroundColor: Int = Colors.WHITE, var vertical: Boolean = true) : QRCodeColorFunction
Link copied to clipboard

A function that selects a color for a give square. The default implementation chooses between fg, bg and margin given what should be rendered.