Code samples for RemoveAlphaChannel.
Automatically generated by the Every Method demo.
// Automated test of RemoveAlphaChannel
// RemoveAlphaChannel (sample alpha channel created by converting whitish pixels)
ImageEnView1.IEBitmap.RemoveAlphaChannel( true, clWhite );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - Alpha Channel
// RemoveAlphaChannel
ImageEnView1.IEBitmap.RemoveAlphaChannel( true, clWhite );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - 32-Bit RGBA
// RemoveAlphaChannel
ImageEnView1.IEBitmap.RemoveAlphaChannel( true, clWhite );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - 1-bit
// RemoveAlphaChannel (sample alpha channel created by converting whitish pixels)
ImageEnView1.IEBitmap.RemoveAlphaChannel( true, clWhite );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - Random Values
// RemoveAlphaChannel (sample alpha channel created by converting whitish pixels)
ImageEnView1.IEBitmap.RemoveAlphaChannel( false, clBlack );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - Alpha Channel - Random Values
// RemoveAlphaChannel
ImageEnView1.IEBitmap.RemoveAlphaChannel( false, clBlack );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - 32-Bit RGBA - Random Values
// RemoveAlphaChannel
ImageEnView1.IEBitmap.RemoveAlphaChannel( false, clBlack );
ImageEnView1.Update(); // Show changes in our viewer

// Automated test of RemoveAlphaChannel - 1-bit - Random Values
// RemoveAlphaChannel (sample alpha channel created by converting whitish pixels)
ImageEnView1.IEBitmap.RemoveAlphaChannel( false, clBlack );
ImageEnView1.Update(); // Show changes in our viewer
