This function determines if the Lens effect filter is available and turns off the effect area (cropping feature).
void IltmmCapture_GetSubObjectDispatch_Example (IltmmCapture *pCapture)
{
HRESULT hr;
IDispatch *pDisp = NULL;
ILMVLens *pLens = NULL;
// call the Capture object to retrieve the FilterGraph
hr = IltmmCapture_GetSubObjectDispatch(pCapture, ltmmCapture_Object_SelVideoProcessor, &pDisp);
if(SUCCEEDED(hr))
{
hr = IDispatch_QueryInterface(pDisp, &IID_ILMVLens, (void**)&pLens);
if(SUCCEEDED(hr))
{
ILMVLens_put_EffectAreaEnabled(pLens, VARIANT_FALSE);
ILMVLens_Release(pLens);
}
IDispatch_Release(pDisp);
}
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document