Saturation example for C++ 5.0 and later

This example increases the saturation of colors in the bitmap and redisplays the image.

ILEADRasterProcess *pRasterProc=NULL;
CoCreateInstance(CLSID_LEADRasterProcess, NULL, CLSCTX_ALL,
                 IID_ILEADRasterProcess, (void**)&pRasterProc);
pRasterProc->Saturation(m_LEADRasterView1.GetRaster(), 1000);
 m_LEADRasterView1.ForceRepaint();
pRasterProc->Release();