How to create transparent animated GIFs with Golang
The image/gif package of Go’s standard library makes it quite easy to create animated GIF images. All you need to do is create your individual frames as an array of *image.Paletted and use gif.EncodeAll() to encode them into an animated GIF. Once you get to the point where you need to do something more advanced than importing existing images or drawing basic shapes, […]