从SQL数据库到CImage的映像

时间:2016-12-14 12:58:13

标签: c++ sql

我现在正在努力,希望有人可以帮助我。

我必须从SQL数据库中获取一个Image(比如SQLGetData),然后将该数据转换为CImage,以便我可以在我的程序中查看它。

感谢您的帮助!

SQLGetData(m_Hstmt, col, SQL_C_BINARY, BinaryPtr, 0, &cbData)

2 个答案:

答案 0 :(得分:0)

问题可以减少为从字节数组加载CImage,因为这是从SQLGetData得到的。

你没有表明你是想使用ATL还是MFC,但是在这两种情况下它都有点尴尬,因为没有public :: LoadFromBuffer函数。

这个答案应该做到: https://stackoverflow.com/a/6759701/1132334

它解释了如何从字节缓冲区创建位图结构并从那里构建CImage。

如果您需要处理不同的图片格式,那将会非常棘手。在这种情况下,将原始字节写入内存映射文件,然后使用CImage::Load(IStream*)重载。

编辑:这一切都已经完成...... https://stackoverflow.com/a/14035492/1132334https://stackoverflow.com/a/38710933/1132334

答案 1 :(得分:0)

感谢目前为止的所有回复。根据@dlatikay的回答,这是我的代码到目前为止。但我不确定类型和不知何故我的图像保持黑色(当我将其保存到文件系统时)

到目前为止,这是我的代码。

SQLLEN    cbData;
CImage    image;

BYTE* imgBits;

    m_Rc = SQLGetData(m_Hstmt, 1, SQL_C_BINARY, imgBits, 0, &cbData);


    if (SQL_SUCCEEDED(m_Rc))
    {
        width = 317;
        height = 159;

        BITMAPINFOHEADER bmInfohdr;
        // Create the header info
        bmInfohdr.biSize = sizeof(BITMAPINFOHEADER);
        bmInfohdr.biWidth = width;
        bmInfohdr.biHeight = -height;
        bmInfohdr.biPlanes = 1;
        bmInfohdr.biBitCount = 8 * 8;
        bmInfohdr.biCompression = BI_RGB;
        bmInfohdr.biSizeImage = width*height * 8;
        bmInfohdr.biXPelsPerMeter = 0;
        bmInfohdr.biYPelsPerMeter = 0;
        bmInfohdr.biClrUsed = 0;
        bmInfohdr.biClrImportant = 0;

        BITMAPINFO bmInfo;
        bmInfo.bmiHeader = bmInfohdr;
        bmInfo.bmiColors[0].rgbBlue = 255;

        // Allocate some memory and some pointers
        unsigned char * p24Img = new unsigned char[width*height * 3];
        BYTE *pTemp, *ptr;
        pTemp = (BYTE*)imgBits;
        ptr = p24Img;

        // Convert image from RGB to BGR
        for (DWORD index = 0; index < width*height; index++)
        {
            unsigned char r = *(pTemp++);
            unsigned char g = *(pTemp++);
            unsigned char b = *(pTemp++);

            *(ptr++) = b;
            *(ptr++) = g;
            *(ptr++) = r;
        }

        // Create the CImage
        image.Create(width, height, 8, NULL);
        image.Save(_T("c:\\temp\\image1.bmp")); // for testing
    }