摘要: #include <Windows.h>#include <OCIdl.h>#include <OleCtl.h>BOOL DrawPicture(char* pszFilePath,HWND hWnd,int nDrawWidth,int nDrawHeight){ HDC hDC = GetDC(hWnd); if(hDC == NULL) { return GetLastError(); } IPicture* pPic = NULL; IStream* pStream = NULL; int ret = 0; HAN... 阅读全文
posted @ 2012-07-14 10:06 大约 阅读(475) 评论(0) 推荐(0) 编辑