QRCode Processor
A Class/Library that helps encode data as QR Code images without any external dependencies.
Rewritten in Kotlin from the original (GitHub).
To create a QR Code you can simply do the following:
val dataToEncode = "Hello QRCode!"
val eachQRCodeSquareSize = 10 // In Pixels!
val qrCodeRenderer = QRCode(dataToEncode).render(eachQRCodeSquareSize)
You can now use qrCodeRenderer
to render your QRCode into any OutputStream
(as a PNG by default)
For example, to simply save it on the disk:
val qrCodeFile = File("qrcode.png")
qrCodeFile.outputStream().use { qrCodeRenderer.writeImage(it) }
Or maybe have it as a byte array, to be sent as a response to a server request:
val imageBytes = ByteArrayOutputStream()
.also { qrCodeRenderer.writeImage(it) }
.toByteArray()
Author
Rafael Lins - g0dkar
Kazuhiko Arase - kazuhikoarase
Parameters
String that will be encoded in the QR Code.
The level of Error Correction that should be applied to the QR Code. Defaults to ErrorCorrectionLevel.MEDIUM.
One of the available QRCodeDataType. By default, the code tries to guess which one is the best fitting one from your input data.
See also
Constructors
Functions
Compute the final size of the image of this QRCode based on the given cellSize
and margin
.
Computes and encodes the data of this object into a QR Code. This method returns the raw data of the QR Code.
Renders a QR Code image based on its computed data. This function exists to ease the interop with Java :)
Renders a QR Code image based on its computed data.
Renders a QR Code image based on its computed data.