1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:07:35 +00:00

LibGfx: adding a very simple PNG writer

With this patch it is possible to create PNG files. Only minimal options
are supported. The PNG is created with one big IDAT chunk containing
only non-compressible DEFLATE blocks.
This commit is contained in:
Pierre 2021-01-22 11:46:09 +01:00 committed by Andreas Kling
parent d1ea418e43
commit a1d7739607
3 changed files with 279 additions and 0 deletions

View file

@ -22,6 +22,7 @@ set(SOURCES
PBMLoader.cpp
PGMLoader.cpp
PNGLoader.cpp
PNGWriter.cpp
PPMLoader.cpp
Point.cpp
Rect.cpp