0

CF_DIB从剪贴板获取 a 然后调用:

GdkPixbuf* pixbuf = gdk_pixbuf_new_from_data(info->bmiColors, GDK_COLORSPACE_RGB, TRUE, 8, info->bmiHeader.biWidth, info->bmiHeader.biHeight, rowstride, NULL, NULL);

从像素数据中创建一个 GdkPixbuf。然而,图像似乎倒置并镜像倒置(我认为它是 BGR)。

如何正确创建 pixbuf?

4

1 回答 1

0

我用我写的这个函数解决了我的问题:

GdkPixbuf* soft_drm_dib_to_pixbuf (BITMAPINFO* info)
{
    gint    rowstride   = 4 * ((info->bmiHeader.biBitCount * info->bmiHeader.biWidth + 31) / 32);
    gsize   size        = rowstride * info->bmiHeader.biHeight;
    gchar*  copy        = (gchar *)info->bmiColors;
    gchar*  newp        = g_malloc0(size);
    gint    x           = 0;
    gint    y           = 0;

    for(y = 0; y < info->bmiHeader.biHeight; y++)
    {
        for(x = 0; x < info->bmiHeader.biWidth; x++)
        {
            gint    col     = x;
            gint    row     = info->bmiHeader.biHeight - y - 1;
            gint    index   = (row * info->bmiHeader.biWidth + col) * 4;
            gint    index2  = (row * info->bmiHeader.biWidth + (info->bmiHeader.biWidth - col)) * 4;

            newp[(size - index2) + 0] = copy[index + 2];
            newp[(size - index2) + 1] = copy[index + 1];
            newp[(size - index2) + 2] = copy[index + 0];
        }
    }

    return gdk_pixbuf_new_from_data(newp, GDK_COLORSPACE_RGB, TRUE, 8, info->bmiHeader.biWidth, info->bmiHeader.biHeight, rowstride, (GdkPixbufDestroyNotify)g_free, NULL);
}

它绝对可以看起来好多了。

于 2019-06-24T00:48:39.450 回答