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::SaveStillDIB Example for C++

Show in webframe
#define MAKE_MEDIA_PATH(pFileName) (TEXT("C:\\LEADTOOLS\\Media\\")TEXT(pFileName))
void SavePlayerDIBToFile(IltmfPlay *pPlay)
{
   BSTR bstr = SysAllocString(MAKE_MEDIA_PATH("dib.bmp"));
   // try to save the still dib file
   HRESULT hr = pPlay->SaveStillDIB(bstr, -1);
   if (FAILED(hr))
   {
      MessageBox(NULL, TEXT("Unable to save still DIB!"), TEXT("Save DIB"), MB_OK);
   }
   // free the bstr
   SysFreeString(bstr);
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.