通过 Magick++ 访问 LibJPEG 函数

发布于 2024-10-14 17:42:52 字数 230 浏览 2 评论 0原文

我在我的 C++ 程序中使用 ImageMagick Magick++。 我将它包含在其中,

#include <Magick++.h>

我经常使用它并且运行良好,但现在我需要直接访问 libjpeg 库的一些功能。我该怎么做?

Magick++ 已经使用并以某种方式包含了 libjpeg,但我无法访问它的功能。我不想将整个库包含两次......

I use ImageMagick Magick++ in my C++ program.
I include it with

#include <Magick++.h>

I used it a lot and it worked well, but now I need to access some functions of the libjpeg library directly. How can I do this?

Magick++ already uses and somehow included libjpeg, but I can´t access the functions of it. I don´t want to include the whole library twice...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画▽骨i 2024-10-21 17:42:52
#include <jpeglib.h>

请参阅此处获取一些文档。但是,使用 Boost/Adobe 可能会更方便吉尔

#include <jpeglib.h>

See here for some documentation. However, it might be more convenient to use the Boost/Adobe GIL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文