IltmmPlay::SaveStillBitmap Example for C++

#define MAKE_MEDIA_PATH(pFileName) (TEXT("C:\\Program Files (x86)\\LEAD Technologies\\LEADTOOLS 19\\Media\\")TEXT(pFileName)) 
void SavePlayerStillBitmap(IltmmPlay *pPlay) 
{ 
   BSTR bstr = SysAllocString(MAKE_MEDIA_PATH("StillBitmap.bmp")); 
   // try to save the still bitmap file 
   HRESULT hr = pPlay->SaveStillBitmap(bstr, ltmmPlay_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 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Multimedia C API Help