ColorIntensityBalance example for C++ Builder

void __fastcall TForm1::Button1Click(TObject *Sender)
{
   /* Load a bitmap at its own bits per pixel  */
   LEADImage1->Load("image3.cmp", 0, 1, 1 );

   /* Balance the colors by increasing the red channel values */
   LEADImage1->ColorIntensityBalance(60, 0, 0, 40, 0, 0, 70, 0, 0, FALSE);
}