https://github.com/akanksha-verma31/huffman-coding
An online .txt file compressor, de-compressor tool which uses Huffman Coding for Lossless data compression.
https://github.com/akanksha-verma31/huffman-coding
compression decompression huffman-coding huffman-compression-algorithm
Last synced: about 1 month ago
JSON representation
An online .txt file compressor, de-compressor tool which uses Huffman Coding for Lossless data compression.
- Host: GitHub
- URL: https://github.com/akanksha-verma31/huffman-coding
- Owner: Akanksha-Verma31
- License: mit
- Created: 2022-10-16T17:59:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-26T15:05:50.000Z (over 2 years ago)
- Last Synced: 2025-02-03T13:14:06.548Z (3 months ago)
- Topics: compression, decompression, huffman-coding, huffman-compression-algorithm
- Language: JavaScript
- Homepage: https://akanksha-verma31.github.io/Huffman-Coding/
- Size: 1.86 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Text File Compressor De-compressor Web App
- This webapp uses Huffman Coding for Text Compression and De-compression.
- Made with JavaScript, HTML5 and CSS3.## About this application:
* This website performs Lossless data compression and decompression of text(.txt) files using Huffman Algorithm.
* In this algorithm, a variable-length code is assigned to input different characters. The code length is related to how frequently characters are used. Most frequent characters have the smallest codes and longer codes for least frequent characters.
* A Huffman code is a tree, built bottom up, starting with the list of different characters appearing in a text and their frequency.
* Compression ratio usually improves as the file size increases.
* The website is made responsive (with HTML and CSS ) and interactive (with JavaScript ) .
* An Info page added to give more information about tecnique of **Lossless Data Compression** with Huffman coding.- [x] Landing Page:

- [x] Upload File

- [x] Select Action (Compress / De-compress)

- [x] Wait for File Download
* File gets downloaded automatically when selected process is complete.* Compression - Compression Ratio is also displayed

* De-compression
* Additional Instructions and Warnings are provided if the above steps are not followed correctly



* About the tecnique of Lossless Data Compression with Huffman coding.