class OE8BitImage : public OEDepictBase
The OE8BitImage class is an implementation of the abstract
OEDepictBase base class (interface) that implements the
drawing functionality by writing into an 8 bit-per-pixel in-memory
bitmap.
OE8BitImage()
Default constructor. By default, the width and height of an
OE8BitImage are 200 pixels wide by 200 pixels high.
The current width and height can be determined using the
OEDepictBase::GetXSize and OEDepictBase::GetYSize
methods. If required, the dimensions of an OE8BitImage
may be adjusted using the OEDepictBase::Resize method.
OE8BitImage(int width, int height)
Construct with a specified width and height. The current width and
height can be determined using the OEDepictBase::GetXSize and
OEDepictBase::GetYSize methods. If required, the dimensions
of an OE8BitImage may be adjusted using the
OEDepictBase::Resize method.