Writing a GIF Decoder
In this article, let's write a gif decoder in typescript.
Parser
Say we have a gif file, the first we need to do after loading the file is to parse it. We can find the format of the gif in GIF89a Specification.
It has defined a clear grammar for the ...
blog.yaox023.com9 min read