在wxWidgets中显示静态图像?

时间:2010-05-19 05:29:17

标签: c++ bitmap wxwidgets

我尝试在wxWidgets对话框中显示内存中的BMP图像已经好几天了,但我的尝试都没有成功。

首先,我尝试在对话框中创建一个wxStaticBitmap控件:

// in class declaration inside header file
  wxStaticBitmap *ibitmap;

// in wxDialog constructor
// MyLogo is an array of `unsigned char`
// contains the bitmap file (Yes, the bitmap file, with BMP header)
ibitmap = new wxStaticBitmap(mainPanel, 4000, wxBitmap(MyLogo, wxBITMAP_TYPE_BMP, 200, 62), wxPoint(10, 10), wxSize(200, 62));

我没有错误,但图片没有出现。

其次,我试图在对话框的EVT_PAINT中绘制图像:

// in the class declaration inside header file
  wxBitmap *ibitmap;

// in the events declaration
  EVT_PAINT(OnPaint)

// in wxDialog constructor
ibitmap = new wxBitmap(MyLogo, wxBITMAP_TYPE_BMP, 200, 62);

// event method implementation
void MyDialog::OnPaint(wxPaintEvent &event)
{
  wxPaintDC dc(this);
  dc.DrawBitmap(*ibitmap, 10, 10);
}

现在我收到了这个调试警报: http://img266.imageshack.us/img266/9512/wxerror.jpg

并且调试器在此行停止:

// dc.h Ln 271
{ DoDrawBitmap(bmp, x, y, useMask); }

有人请指出我吗?

1 个答案:

答案 0 :(得分:1)

您的位图未正确加载。根据您要使用的wxWidgets docs wxBitmap构造函数具有以下签名:

 wxBitmap(const char bits[], int width, int height, int depth=1)

所以你应该得到类似的东西:

wxBitmap(MyLogo, 200, 62, 3)

假设是RGB位图。