我在Visual Studio 2012中加载图片时遇到问题:

case WM_PAINT:
    hBitmap = (HBITMAP)LoadImage(::hInstance, L"apple.jpg", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE); // problem??
            PAINTSTRUCT     ps;
            HDC             hdc;
            BITMAP          bitmap;
            HDC             hdcMem;
            HGDIOBJ         oldBitmap;

            hdc = BeginPaint(hWnd, &ps);

            hdcMem = CreateCompatibleDC(hdc);
            oldBitmap = SelectObject(hdcMem, hBitmap);

            GetObject(hBitmap, sizeof(bitmap), &bitmap);
            BitBlt(hdc, 0, 0, bitmap.bmWidth, bitmap.bmHeight, hdcMem, 0, 0, SRCCOPY);

            SelectObject(hdcMem, oldBitmap);
            DeleteDC(hdcMem);

            EndPaint(hWnd, &ps);
return 0;


我将图像从桌面拖放到Visual Studio 2012中,但是图像未出现在窗口中。



我认为问题出在L“ apple.jpg”,有人在做错什么吗?

最佳答案

问题是“ LoadImage”方法不支持JPG图像。它仅支持BMP。

08-15 22:18