5

我无法使用 CImg 加载 PNG。我听说您需要先获取 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;
}
4

1 回答 1

7

关闭,但你需要#define cimg_use_png

并添加-lpng到您的链接器标志。

于 2011-01-16T15:42:21.583 回答