kgashok / huffman-coding

Python Implementation of Huffman Coding - compression and decompression
1 stars 0 forks source link

how about compressing jpg/png files? #4

Open kgashok opened 4 years ago

kgashok commented 4 years ago

"since this code is capable of encoding the text, we need to first encode the image file to text via different encoding techniques. there is base64 encoding method that encode the given image to string. and then we could perform this compression , after decoding we could get back base4 decoding to generate our image back. (This is what i did , so i shared)"