This function determines if the Lens effect filter is available and turns off the effect area (cropping feature).
// This function checks if the Lens effect filter is available// and turns off the effect area (cropping feature)void TurnOffLensCropping(IltmmCapture *pCapture){HRESULT hr;IDispatch *pDisp = NULL;ILMVLens *pLens = NULL;// call the Capture object to retrieve the selected video processorhr = pCapture->GetSubObjectDispatch(ltmmCapture_Object_SelVideoProcessor, &pDisp);if(SUCCEEDED(hr)){// see if the selected processor is the Lens Effect processorhr = pDisp->QueryInterface(IID_ILMVLens, (void**)&pLens);if(SUCCEEDED(hr)){// disable the effectpLens->put_EffectAreaEnabled(VARIANT_FALSE);// release the objectpLens->Release();}// release the sub objectpDisp->Release();}}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
