IltmmCapture::SaveStillBitmap Example for C++

void SaveCaptureBitmapToFile(IltmmCapture *pCapture) 
{ 
   BSTR bstr = SysAllocString(L"C:\\Stillbitmap.cmp"); 
 
   // try to save the bitmap 
   HRESULT hr = pCapture->SaveStillBitmap(bstr, ltmmCapture_StillFormat_CMP, 2, 0, -1); 
    
   if (FAILED(hr)) 
   { 
      // display an error message if the bitmap did not save successfully 
      ::MessageBox(NULL, TEXT("Save capture still settings failed!"), TEXT("Save Still Bitmap"), MB_OK); 
   } 
 
   // free the bstr 
   SysFreeString(bstr); 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help