I'm trying to find the Cimg library so that I can add it to libraries I have in Dev-c++, but there's no folder in Cimg named lib, so what's it called? Thanks.
feedback
|
|
Follow the CImg tutorial, which describes how to use it. Also check out their FAQ:
CImg is a header-only library so you build it with your source, no external libraries to link. | |||
|
feedback
|
|
Assuming you're talking about this, it appears to be header-only. Just | |||
|
feedback
|
|
This question is old now, you may have found a solution. But in case someone else needs help, here is my contribution: I think you'r trying to read jpeg files with Cimg. Jpeg support is not built in Cimg, you'll need an additional lib (libjpeg or imageMagick). In case of libjpeg you'll have to add #define cimg_use_jpeg before including CImg.h and you'll need libjpeg.lib This page may help you : Compile LibJPEG | |||
|
feedback
|