CImg 的图书馆名称是什么?
我正在尝试找到 Cimg 库,以便将其添加到 Dev-c++ 中的库中,但是 Cimg 中没有名为 lib 的文件夹,那么它叫什么?谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
按照 CImg 教程进行操作,其中介绍了如何使用它。另请查看他们的常见问题解答:
CImg 是一个仅标头库,因此您可以使用源代码构建它,无需外部库链接。
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.
这个问题现在已经很老了,您可能已经找到了解决方案。
但如果其他人需要帮助,这是我的贡献:
我认为您正在尝试使用 Cimg 读取 jpeg 文件。 Cimg 中未内置 Jpeg 支持,您需要额外的库(libjpeg 或 imageMagick)。
如果是 libjpeg 你必须添加
#定义 cimg_use_jpeg
在包含 CImg.h 之前,您需要 libjpeg.lib
此页面可能会帮助您:编译 LibJPEG
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
假设您正在谈论this,它似乎只是标题。
只需
#include "CImg.h"
就可以了,不需要(额外的)库文件。Assuming you're talking about this, it appears to be header-only.
Just
#include "CImg.h"
and you're good to go, no (extra) library files needed.