-
Notifications
You must be signed in to change notification settings - Fork 6
/
README
34 lines (26 loc) · 781 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Minimalist JPEG decoder & encoder
=================================
Decoder
- written in C99
- can parse YCbCr, YCCK and grayscale images
- can handle 8-bit or 12-bit samples
- can handle subsampled components
- can handle restart markers
- supports interleaved and non-interleaved scans
- supports Motion JPEG
- does not support progressive JPEG files
- does not support arithmetic coding
Encoder
- written in C99
- supports subsampled components (4:4:4, 4:2:2, 4:2:0)
- uses interleaved scan
- supports quality setting (1..100)
- support color and grayscale images
- uses default Huffman table or optimized tables
- can handle 8-bit and 12-bit input images
Author
======
David Barina <[email protected]>
License
=======
This project is licensed under the MIT License.