Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.11.27
LEADTOOLS Media Foundation Help

IltmfCapture::SaveStillBitmap Example for C++

Show in webframe
void SaveCaptureBitmapToFile(IltmfCapture *pCapture)
{
   BSTR bstr = SysAllocString(L"C:\\Stillbitmap.cmp");
   // try to save the bitmap
   HRESULT hr = pCapture->SaveStillBitmap(bstr, ltmfCapture_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);
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.