WxBitmap,无法正确看到图像

发布于 2025-01-07 10:18:13 字数 756 浏览 0 评论 0原文

我正在尝试读取位图图像并将类 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒江雪… 2025-01-14 10:18:13

不要深入位图文件并从原始数据中创建 wxBitmap,而是使用 wxImage 加载文件,然后将其转换为 wxBitmap >:

wxBitmap*
MyFrame::readImage(const char* filename)
{
    wxImage image(wxString(filename));
    return new wxBitmap(image);
}

Instead of poking inside a bitmap file and creating a wxBitmap out of the raw data, use wxImage to load the file, then convert it to a wxBitmap:

wxBitmap*
MyFrame::readImage(const char* filename)
{
    wxImage image(wxString(filename));
    return new wxBitmap(image);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文