Emboss example for C++ 5.0 and later
This example applies an emboss effect and repaints the image.
ILEADRasterProcess *pRasterProc=NULL;
CoCreateInstance(CLSID_LEADRasterProcess, NULL, CLSCTX_ALL,
IID_ILEADRasterProcess, (void**)&pRasterProc);
pRasterProc->Emboss(m_LEADRasterView1.GetRaster(),
EMBOSS_NE, 500);
m_LEADRasterView1.ForceRepaint();
pRasterProc->Release();