在 Visual C 中将 .bmp 转换为 .jpg 6.0
我有一个 Windows C++ 程序,它接收并保存位图文件 (*.bmp)。我的客户希望将位图另存为 JPEG 文件。这在 Visual Studio 2008 中看起来非常简单,但我一直使用 Visual Studio 6.0(我的雇主将在其中一天升级,但不是今天)。有没有一种简单的方法可以在 VC++6.0 中进行转换,或者我需要外部实用程序吗?我没有资源(即时间)来“自己动手”。
I have a Windows C++ program which receives and saves bitmap files (*.bmp). My customer would like the bitmaps saved as JPEG files instead. This looks very simple in Visual Studio 2008, but I'm stuck with Visual Studio 6.0 (my employer will upgrade one of these days, but not today). Is there a simple way to do the conversion in VC++6.0, or do I need an external utility program? I do not have the resources (i.e. time) to "roll my own".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
显而易见的选择是使用 GDI+ 或诸如 IJG 之类的库。 MSDN 显示了一个 GDI+ 示例,该示例演示了写入 PNG 文件。将其转换为 JPEG 文件只需选择不同的编码器即可。
The obvious choice would be to use GDI+ or a library such as IJG's. MSDN shows a GDI+ sample that demonstrates writing a PNG file. Converting it to produce a JPEG file is just a matter of selecting a different encoder.
一个简单的方法是使用 ImageMagick 库。您可以使用命令行工具,也可以使用 Magick++ API 将库直接集成到您的程序中。
An easy way to do this would be to use the ImageMagick library. You can either use the command line tools, or integrate the library directly into your program using the Magick++ API.
查看独立 JPEG 组 中的库。
Check out the library from the Independent JPEG Group.