使用 FLTK.lib 的 Fl_JPEG_Image 打开图像

Open image with FLTK.lib's Fl_JPEG_Image

您好,我正在尝试使用 FLTK 库绘制一堆图像。 我的问题是我无法使用 FLTK 的 Fl_JPEG_Image

打开任何 *.jpg 文件
std::vector<Img> displayedImages; // my clas containning paths to images loaded from database
std::vector<Fl_JPEG_Image*> images;
std::vector<Fl_Box*> boxes;

Fl_JPEG_Image im(displayedImages.at(i).getThumb().c_str()); // this line gives an error while input provided is absolute path of a file
images.push_back(&im);

我不断收到的错误是:

未解析的外部符号"public: __thiscall Fl_JPEG_Image(const cahr*)"

知道这意味着什么以及如何解决这个错误吗?

感谢 cup,我发现了我的 nooby 问题,并通过简单地将缺少的 .libs 添加到我的项目中解决了它。