Test.cpp 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // Test.cpp : 定义控制台应用程序的入口点。
  2. //
  3. #include "stdafx.h"
  4. #include "Test.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #endif
  8. // 唯一的应用程序对象
  9. typedef BOOL (WINAPI *GenerationThumbnail)(IN LPCTSTR lpImgPath, IN LPCTSTR lpNewImgPath, IN DWORD dwWidth, IN DWORD dwHeight, IN DWORD dwQuality);
  10. CWinApp theApp;
  11. using namespace std;
  12. int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
  13. {
  14. int nRetCode = 0;
  15. HMODULE hModule = ::GetModuleHandle(NULL);
  16. if (hModule != NULL)
  17. {
  18. // 初始化 MFC 并在失败时显示错误
  19. if (!AfxWinInit(hModule, NULL, ::GetCommandLine(), 0))
  20. {
  21. // TODO: 更改错误代码以符合您的需要
  22. _tprintf(_T("错误: MFC 初始化失败\n"));
  23. nRetCode = 1;
  24. }
  25. else
  26. {
  27. // TODO: 在此处为应用程序的行为编写代码。
  28. }
  29. }
  30. else
  31. {
  32. // TODO: 更改错误代码以符合您的需要
  33. _tprintf(_T("错误: GetModuleHandle 失败\n"));
  34. nRetCode = 1;
  35. }
  36. HMODULE hdll = LoadLibrary(_T("SimpleImgThumbnail_x86.dll"));
  37. if (hdll == NULL)
  38. {
  39. //dwError = GetLastError();
  40. AfxMessageBox(_T("加载读取硬件信息模块失败!"));
  41. return 0;
  42. }
  43. GenerationThumbnail gt = NULL;
  44. gt = (GenerationThumbnail)::GetProcAddress(hdll, "GenerationThumbnail");
  45. if ( gt == NULL )
  46. return 0;
  47. gt(_T(".\\04.jpg"),_T(".\\003.jpg"),2320,2067,0);
  48. return nRetCode;
  49. }