Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kareemmoneeam/lzw_datacompression
LZW, data compression technique
https://github.com/kareemmoneeam/lzw_datacompression
Last synced: 3 days ago
JSON representation
LZW, data compression technique
- Host: GitHub
- URL: https://github.com/kareemmoneeam/lzw_datacompression
- Owner: KareemMoneeam
- Created: 2023-10-07T11:45:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-07T11:48:08.000Z (about 1 year ago)
- Last Synced: 2023-10-07T12:31:18.124Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LZW_DataCompression
The LZW algorithm is a very common compression technique.
This algorithm is typically used in GIF and optionally in PDF and TIFF. Unix’s ‘compress’ command, among other uses. It is lossless, meaning no data is lost when compressing. The algorithm is simple to implement and has the potential for very high throughput in hardware implementations. It is the algorithm of the widely used Unix file compression utility compress and is used in the GIF image format. The Idea relies on reoccurring patterns to save data space. LZW is the foremost technique for general-purpose data compression due to its simplicity and versatility. It is the basis of many PC utilities that claim to “double the capacity of your hard drive”.