commonMain.io.github.alexzhirkevich.qrose.oned.BarcodeEncoder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qrose-oned Show documentation
Show all versions of qrose-oned Show documentation
Compose Multiplatform single-dimension barcodes
package io.github.alexzhirkevich.qrose.oned
/**
* Single dimension barcode encoder.
* */
interface BarcodeEncoder {
/**
* Encodes string [data] into barcode [BooleanArray] where 1 is a black bar and 0 is a white bar.
*
* Illegal contents can throw exceptions
* */
fun encode(data : String) : BooleanArray
}