Is it possible to have QRcode with multiple data channels to store 3x data?
Possible data splitter: def splitting(data): [return b"0"+data[0::3], b"1"+data[1::3], b"2"+data[2::3]]
And then run those through a QRcode generator, and use red, green, blue channels to pack them?
Is it possible to have QRcode with multiple data channels to store 3x data?
Possible data splitter:
def splitting(data): [return b"0"+data[0::3], b"1"+data[1::3], b"2"+data[2::3]]And then run those through a QRcode generator, and use red, green, blue channels to pack them?