0

我正在尝试使用 FLTK 在 C++ 程序中绘制 xpm 文件。

这是代码

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include "image.xpm"
#include <FL/Fl_Pixmap.H>
#include <FL/fl_draw.H>
#include <FL/Fl_Image.H>
int main(int argc, char ** argv)
{
  Fl_Window *window = new Fl_Window(800,650);
  Fl_Pixmap pix(XFACE);
  pix.draw(200,200);
  window->end();
  window->show(argc,argv);
  return Fl::run();
}

XFACE 是“image.xpm”中的有效 xpm 对象

但是我在 pix.draw() 行遇到了分段错误。
这是什么原因造成的?

4

2 回答 2

3
/* Try this - this works for me, and I guess is what you meant! */

#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Pixmap.H>

#include "image.xpm"

int main(int argc, char ** argv)
{
    Fl_Window *window = new Fl_Window(800,650);
    Fl_Box *image_box = new Fl_Box(5, 5, 790, 640);
    Fl_Pixmap pix(XFACE);
    window->end();
    image_box->image(pix);
    window->show(argc,argv);
    return Fl::run();
}

/* end of file */
于 2012-06-18T10:25:39.457 回答
0

老实说,这看起来甚至不像是有效的 fltk 代码。您正在直接调用 draw() 方法,而 AFAIK 在 fltk 中很少有效。

您可能想在他们的邮件列表上询问 - 他们非常敏感。

此外,您是否查看了 tarball 的“测试”文件夹中的像素图演示 - 看看它做了什么,然后复制它!

于 2012-06-18T10:11:10.417 回答