hi, I want to load an image from my disc
I used this code 

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


int main(int argc, char **argv) {
Fl_Window *window = new Fl_Window(300,180);
window->fullscreen();

Fl_Box box(10,10,720-20,486-20);
Fl_JPEG_Image jpg("me");
box.image(jpg);

window->end();
window->show(argc, argv);
return Fl::run();
}

but the problem is that it tells me that  : undefined reference to 
`Fl_JPEG_Image::Fl_JPEG_Image(char const*)'
I am stagnated what can I do to solve this problem?


                                          
_________________________________________________________________
Hotmail : une messagerie performante et gratuite avec une sécurité signée 
Microsoft
https://signup.live.com/signup.aspx?id=60969
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to