All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.alexzhirkevich.qrose.oned.BarcodeEncoder.kt Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy