> > I compiled the cod ein article it give me the errors
Looks very much as if you have not linked in any image libs. You need to be linking something like this: .... -lfltk_images -lfltk -lfltk_jpeg -lfltk_png -lfltk_z... Assuming you are using the fltk-supplied image libraries, of course, and a command line based compiler. If you are using the system provided image libs (which would be the recommended approach on most *nix systems, but not on MS-windows systems), then you'd use... .... -lfltk_images -lfltk -ljpeg -lpng -lz... Note - order of linking is significant for many compilers. I think the order given is "correct". If you are using some IDE, you'll need to figure out how to add the equivalent libraries, in the appropriate order, into your IDE config file. Cheers, -- Ian SELEX Sensors and Airborne Systems Limited Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14 3EL A company registered in England & Wales. Company no. 02426132 ******************************************************************** This email and any attachments are confidential to the intended recipient and may also be privileged. If you are not the intended recipient please delete it from your system and notify the sender. You should not copy it or use it for any purpose nor disclose or distribute its contents to any other person. ******************************************************************** _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

