简单的JPG库(dll)仅用于保存JPG图像?

发布于 2024-12-19 23:47:34 字数 358 浏览 1 评论 0原文

有没有人为Windows制作一个简单的DLL,这样我就可以将原始图像数据保存为JPG格式?它也应该有 .lib 和 .h 文件,所以我不需要搞乱源代码编译,因为我发现它非常困难。

需要考虑的一点是:

  • 我无法编译 libjpeg (ijg.org),我找不到它的二进制文件 (dll/.lib/.h)
  • GD 库网站已关闭,新版本甚至需要 PNG dll 等才能保存 JPG 。
  • 我不想使用 Windows 内部 JPG 函数,因为我也希望能够在 Linux 上运行它。

编辑: 我试图找到尽可能小的库:只写一个 JPG(或者也可以读取,如果不存在写入库)。

Has anyone made a simple DLL for Windows, so i can just save raw image data into JPG format? It should have the .lib and .h files as well so i dont need to mess with the sources compiling since i have found it to be very hard.

Some point to take into account:

  • I cant compile libjpeg (ijg.org), i cant find binaries for it (dll/.lib/.h)
  • GD library website is down, and the new version requires PNG dll's etc even for JPG saving.
  • I dont want to use Windows internal JPG functions since i want to be able to run it on linux too.

Edit:
I am trying to find as small library as possible: just writing a JPG (or reading too, if only a writing lib doesnt exist).

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

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

发布评论

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

评论(3

嘿咻 2024-12-26 23:47:34

尝试 jpeg-compressor,我认为这是最简单的。

Try jpeg-compressor, I think that it's the most simple one.

送君千里 2024-12-26 23:47:34

您是否考虑过使用 FreeImage

Have you considered using FreeImage ?

迷鸟归林 2024-12-26 23:47:34

为什么不使用GDI+?它内置于 Windows 中,因此您无需添加任何其他库。

页面显示了加载示例来自磁盘上文件的位图图像并将其另存为 JPEG 文件(具有不同级别的编码质量)。

Why not use GDI+? It's built into Windows so you don't need to add any additional libraries.

This page shows an example of loading a bitmap image from a file on disk and saving it as a JPEG file (with different levels of encoding quality).

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