Shear example for C++ 5.0 and later
This example shears the bitmap 5 degrees horizontally and redisplays the image. It uses blue as the fill color.
ILEADRasterProcess *pRasterProc=NULL;
CoCreateInstance(CLSID_LEADRasterProcess, NULL, CLSCTX_ALL,
IID_ILEADRasterProcess, (void**)&pRasterProc);
pRasterProc->Shear(m_LEADRasterView1.GetRaster(), 500, TRUE,
RGB(0,0,255));
m_LEADRasterView1.ForceRepaint();
pRasterProc->Release();