I coding the process in python, Here the process text file(input) -> using huffman algo compressed and save the compressed file (.bin) binary file -> generate barcode from compressed (.bin file) -> scan the barcode to get the original text (input).
I did till generate the barcode but when i scan the barcode (qrcode) i got the result in the binary format (1010) because i genearte the qrcode from compressed binary file , which using Huffman Compression Algorithm.
But i need the exact output result once scan the barcode which is string store in input text file. Please help me to do that.