在 Visual C 中将 .bmp 转换为 .jpg 6.0

发布于 2024-10-16 18:38:58 字数 202 浏览 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 技术交流群。

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

发布评论

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

评论(3

没︽人懂的悲伤 2024-10-23 18:38:59

显而易见的选择是使用 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.

ゝ偶尔ゞ 2024-10-23 18:38:59

一个简单的方法是使用 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.

棒棒糖 2024-10-23 18:38:59

查看独立 JPEG 组 中的库。

Check out the library from the Independent JPEG Group.

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