简单的JPG库(dll)仅用于保存JPG图像?
有没有人为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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 jpeg-compressor,我认为这是最简单的。
Try jpeg-compressor, I think that it's the most simple one.
您是否考虑过使用 FreeImage ?
Have you considered using FreeImage ?
为什么不使用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).