使用 Gdiplus 在 Win32 中创建位图
Bitmap creation in Win32 using Gdiplus
我正在尝试使用 Win32 和 Gdiplus 创建位图。我不想加载我只想使用 Setpixel 创建我自己的图像的文件。我使用了这个构造函数:
void Bitmap(INT width, INT height, INT stride, PixelFormat format, BYTE *scan0);
但是当我尝试在我的位图上使用 Setpixel 时,它甚至什么都不做 GetHeight returns 0.
m_pixelMap = new BYTE[m_renderSpaceWidth*m_renderSpaceHeight * 3];
Gdiplus::Bitmap img(m_renderSpaceWidth, m_renderSpaceHeight, 24 * m_renderSpaceWidth, PixelFormat24bppRGB, m_pixelMap);
std::cout << "H: " << img.GetHeight() << std::endl;
我做错了什么?
所以我不知道我必须先初始化 Gdiplus,所以这就是我所缺少的。我稍微改变了位图的创建。现在一切正常。
m_stride = ALIGN_CLUSPROP(3 * m_renderSpaceWidth);
m_padding = m_stride - (m_renderSpaceWidth * 3);
m_horizontalScanLine = (m_renderSpaceWidth * 3) + m_padding;
m_pixelMap = new BYTE[m_stride * m_renderSpaceHeight];
m_bitmap = new Gdiplus::Bitmap(m_renderSpaceWidth, m_renderSpaceHeight, m_stride, PixelFormat24bppRGB, m_pixelMap);
我正在尝试使用 Win32 和 Gdiplus 创建位图。我不想加载我只想使用 Setpixel 创建我自己的图像的文件。我使用了这个构造函数:
void Bitmap(INT width, INT height, INT stride, PixelFormat format, BYTE *scan0);
但是当我尝试在我的位图上使用 Setpixel 时,它甚至什么都不做 GetHeight returns 0.
m_pixelMap = new BYTE[m_renderSpaceWidth*m_renderSpaceHeight * 3];
Gdiplus::Bitmap img(m_renderSpaceWidth, m_renderSpaceHeight, 24 * m_renderSpaceWidth, PixelFormat24bppRGB, m_pixelMap);
std::cout << "H: " << img.GetHeight() << std::endl;
我做错了什么?
所以我不知道我必须先初始化 Gdiplus,所以这就是我所缺少的。我稍微改变了位图的创建。现在一切正常。
m_stride = ALIGN_CLUSPROP(3 * m_renderSpaceWidth);
m_padding = m_stride - (m_renderSpaceWidth * 3);
m_horizontalScanLine = (m_renderSpaceWidth * 3) + m_padding;
m_pixelMap = new BYTE[m_stride * m_renderSpaceHeight];
m_bitmap = new Gdiplus::Bitmap(m_renderSpaceWidth, m_renderSpaceHeight, m_stride, PixelFormat24bppRGB, m_pixelMap);