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

LibDraw: Start work on a GIF decoder (not yet functional!)

Here comes the first part of a GIF decoder. It decodes up to the point
of gathering all the LZW-compressed data. The next step is to implement
decompression, and then turn the decompressed data into a bitmap using
the color maps, etc.
This commit is contained in:
Andreas Kling 2019-11-23 16:48:28 +01:00
parent 630d5b3ffd
commit 00ab9488ad
3 changed files with 257 additions and 0 deletions

View file

@ -8,6 +8,7 @@ OBJS = \
GraphicsBitmap.o \
Painter.o \
PNGLoader.o \
GIFLoader.o \
ImageDecoder.o \
Rect.o \
StylePainter.o \