IltmmCapture::SaveStillBitmap Example for C
Show in webframe
#define MAKE_MEDIA_PATH(pFileName) (TEXT("C:\\LEADTOOLS 18\\Media\\")TEXT(pFileName))
LPOLESTR T2OLE(LPCTSTR lpt)
{
static OLECHAR lpw[512];
if(!lpt)
return NULL;
lpw[0] = L'\0';
MultiByteToWideChar(CP_ACP, 0, lpt, -1, lpw, 512);
return lpw;
}
void IltmmCapture_SaveStillBitmap_Example (IltmmCapture* pCapture)
{
BSTR bstrFileName = SysAllocString(T2OLE(MAKE_MEDIA_PATH("Stillbitmap.cmp")));
IltmmCapture_SaveStillBitmap(pCapture, bstrFileName, ltmmCapture_StillFormat_CMP, 2, 0, -1);
SysFreeString(bstrFileName);
}