我一直在123行遇到一个错误:

123 C:\Dev-Cpp\Window_main_2.c invalid conversion from `void*' to `HBITMAP__*'

我不知道该怎么办,这让我发疯。
void DrawBitmap(HDC hdcDest, char *filename, int x, int y)
{
    HBITMAP image;
    BITMAP bm;
    HDC hdcMem;

    // This is the line that brings about the issue (just ask me if more code is required because
    // there is a lot more. Essentially this whole function points to a file and I call this
    // function in another function that will compile a windows screen filled with the following
    // image path. But I cant get this HBITMAP to agree with the image datatype. Please let me
    // know if more info is required and thank you.) The line is below.
    image = LoadImage(0, "C:\\Users\\Lillian\\Pictures\\c.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);

    GetObject(image, sizeof(BITMAP), &bm);

    hdcMem = CreateCompatibleDC(global_hdc);
    SelectObject(hdcMem, image);

    BitBlt(
        global_hdc,
        x,
        y,
        bm.bmWidth,
        bm.bmHeight,
        hdcMem,
        0,
        0,
        SRCCOPY);

    DeleteDC(hdcMem);
    DeleteObject((HBITMAP)image);
}

最佳答案

LoadImage()返回aHANDLE。将结果分配给变量时,需要进行转换:

image = (HBITMAP) LoadImage(0, "C:\\Users\\Lillian\\Pictures\\c.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);

此外,在您DeleteDC()之前,您需要将原始HBITMAP选择回hdcMem中-您需要在之前调用SelectObject()时保存它。

关于c - 无效到HBITMAP转换问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27005959/

10-11 22:25