IltmfPlay::SaveStillBitmap Example for C++

#define MAKE_MEDIA_PATH(pFileName) (TEXT("C:\\LEADTOOLS\\Media\\")TEXT(pFileName)) 
void SavePlayerStillBitmap(IltmfPlay *pPlay) 
{ 
   BSTR bstr = SysAllocString(MAKE_MEDIA_PATH("StillBitmap.bmp")); 
   // try to save the still bitmap file 
   HRESULT hr = pPlay->SaveStillBitmap(bstr, ltmfPlay_StillFormat_CMP, 2, 0, -1); 
   if (FAILED(hr)) 
   { 
      MessageBox(NULL, TEXT("Unable to save still bitmap"), 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 Media Foundation C API Help