JuliaImages / QRCoders.jl

Creating QR Codes within Julia
https://juliaimages.org/QRCoders.jl/
MIT License
68 stars 11 forks source link

Add Kanji mode #14

Closed RexWzh closed 2 years ago

RexWzh commented 2 years ago

Hi, I found that there are only three encoding modes in the repo: Numeric, Alphanumeric and Byte. The Kanji mode is missing, while an annotation has been added.

"""
Encoding mode for messages composed of ISO 8859-1 or UTF-8 characters.
"""
struct Byte <: Mode end
# struct Kanji <: Mode end

It might help to enlarge the capacity of the QR Code if the Kanji mode is supported.


Recently, I'm applying the OSPP project of QR Code, and would like to add support of Kanji mode as part of the project. I will be thankful if there are any suggestions.