WxBitmap,无法正确看到图像
我正在尝试读取位图图像并将类 wxBitmap 与此构造函数一起使用:
wxBitmap (const char bits[], int width, int height, int depth=1)
但我无法理解为什么当我调用该方法时:
wxDC::DrawBitmap (const wxBitmap &bitmap, wxCoord x, wxCoord y, bool useMask=false)
图像完全扭曲。
这是代码:
wxBitmap*
MyFrame::readImage(const char* filename, int x, int y)
{
char* bits = new char[x*y];
char byte;
long i = 0;
std::ifstream f(filename, std::ios::binary);
f.seekg(54, std::ios::beg); // skip header
while(i < x*y) {
f.read((char *)&byte, sizeof(char));
bits[i++] = byte;
}
f.close();
return (new wxBitmap(bits, x, y) );
}
之后,当我尝试绘制位图时,没有任何效果。
I'm trying read a bitmap image and use class wxBitmap with this constructor:
wxBitmap (const char bits[], int width, int height, int depth=1)
But i cannot understand why when I call the method:
wxDC::DrawBitmap (const wxBitmap &bitmap, wxCoord x, wxCoord y, bool useMask=false)
the image is completely distorted.
Here's the code:
wxBitmap*
MyFrame::readImage(const char* filename, int x, int y)
{
char* bits = new char[x*y];
char byte;
long i = 0;
std::ifstream f(filename, std::ios::binary);
f.seekg(54, std::ios::beg); // skip header
while(i < x*y) {
f.read((char *)&byte, sizeof(char));
bits[i++] = byte;
}
f.close();
return (new wxBitmap(bits, x, y) );
}
After that when I try to draw the bitmap nothing works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要深入位图文件并从原始数据中创建
wxBitmap
,而是使用wxImage
加载文件,然后将其转换为wxBitmap
>:Instead of poking inside a bitmap file and creating a
wxBitmap
out of the raw data, usewxImage
to load the file, then convert it to awxBitmap
: