Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Multimedia API Help

IltmmPlay::SaveStillDIB Example for C++

Show in webframe

#define MAKE_MEDIA_PATH(pFileName) (TEXT("C:\\LEADTOOLS 18\\Media\\")TEXT(pFileName))


void SavePlayerDIBToFile(IltmmPlay *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.