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 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.