summaryrefslogtreecommitdiffstats
path: root/README.md
blob: 725c88d1fb63e15061ea394ad33f0bf59edb3fe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# LisiblePNG - a PNG decoder

This PNG decoder is meant to be used in my other C projects.

## Supported features

This is a simple implementation of a PNG decoder, it currently implements the following features:
- IHDR, IDAT and IEND chunks
- Greyscale wihout alpha
- Truecolour without alpha, without palette
- 1 to 16 bit depth samples
- All PNG filtering methods

Alpha channels, interlacing, paletted images and non-mandatory chunks are not supported.

## Building

```bash 
meson setup <builddir>
meson compile -C <builddir>
```
Go back to lisible.xyz