https://github.com/aka411/jpeg-decoder
A simple Jpeg decoder written in pure JavaScript without using any libraries.
https://github.com/aka411/jpeg-decoder
jpeg-decoder
Last synced: about 1 year ago
JSON representation
A simple Jpeg decoder written in pure JavaScript without using any libraries.
- Host: GitHub
- URL: https://github.com/aka411/jpeg-decoder
- Owner: aka411
- Created: 2024-12-06T17:30:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-08T07:43:18.000Z (over 1 year ago)
- Last Synced: 2025-02-17T11:35:23.576Z (over 1 year ago)
- Topics: jpeg-decoder
- Language: JavaScript
- Homepage:
- Size: 1.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JPEG-Decoder
This is one of my earlier projects that i wrote.It was written without using any libraries.Instead i wrote my own parser and decompresser for this.I wrote this just for learning.Since it is one of my earlier works it is not well structured and organised and currently it does not work for every type of png and it can only decompress and extract the luminance data(Jpeg before compression converts RGB to YCbCr color space hence decompressed data will be in YCbCr color space).