Я не могу загрузить PNG с помощью CImg. Я слышал, что для начала нужно получить libpng / zlib, но я не уверен, как это настроить. Я нахожусь на Ubuntu. Мой источник:
#include <cmath>
#include <cstdio>
#include <string>
#include <assert.h>
#include <stdarg.h>
#define cimg_using_png
#include "CImg.h"
using namespace cimg_library;
#include "png.h"
int main(int argc, char** argv)
{
CImg<unsigned char> img2("test.png");
img2.display();
return 0;
}