C# Class ImageProcessor.Imaging.Quantizers.WuQuantizer.ImageBuffer

The image buffer for storing and manipulating pixel information. Adapted from
Mostra file Open project: JimBobSquarePants/ImageProcessor Class Usage Examples

Public Methods

Method Description
ImageBuffer ( Bitmap image ) : System

Initializes a new instance of the ImageBuffer class.

UpdatePixelIndexes ( IEnumerable lineIndexes ) : void

Updates the pixel indexes.

Method Details

ImageBuffer() public method

Initializes a new instance of the ImageBuffer class.
public ImageBuffer ( Bitmap image ) : System
image System.Drawing.Bitmap /// The image to store. ///
return System

UpdatePixelIndexes() public method

Updates the pixel indexes.
public UpdatePixelIndexes ( IEnumerable lineIndexes ) : void
lineIndexes IEnumerable /// The enumerable byte array representing each row of pixels. ///
return void