GifMaker base class
by
Joe Strout
GifMaker is the base class for objects which can save themselves as a GIF
(Graphics Interchange Format) file via a call to the
SaveGif("myfilename.gif") method, which returns 1 if the
file was save sucessfully, and 0 otherwise.
Derived classes must implement the following functions:
- GetPixel(x,y): returns the color number at a
particular position at the image
- GetColor(n): returns the RGB corresponding
to a particular color number
Here's the source code:
http://www-ncmir.ucsd.edu/~jstrout/classlib/gifmaker/GifMaker.html
Last Updated:
6/07/96
Joe Strout (
joe@strout.net )