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

IltmfPlay::SaveStillBitmap Example for C++

Show in webframe
#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);
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.