如何使用本机 Windows XP 功能以编程方式将图像文件转换为 BMP?
是否可以使用 WindowsXP 的本机库和脚本功能将图像文件转换为 BMP 格式?
我说的是 WSH、JScript、VBS 等...
如果 C++ 可以用 Dev-C++ 编译的话,它也能满足我的需要
Is it possible to convert an image file to BMP format using WindowsXP's native libraries and scripting capabilities?
I'm talking about WSH, JScript, VBS, etc...
C++ is also good for what I need if it can be compiled with Dev-C++
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,你可以。查看 Image 类,它是GDI+ 的。
Yes, you can. Look at the Image class which is part of GDI+.
要从脚本转换图像,您可以使用 WIA 自动化库。它不是严格意义上的“本机”库,但它是可重新分发的(请参阅 EULA)。
Blow 是一个 JScript 示例,演示如何将图像转换为 BMP。原始图像可以是 PNG、GIF、JPEG 或 TIFF。在运行脚本之前,请在系统中注册wiaut.dll库。
另请参阅 MSDN 上的 WIA 文档。
To convert images from scripts, you can use the WIA Automation Library. It's not strictly "native" library, but it's redistributable (refer to EULA).
Blow is a JScript example that shows how to convert an image to BMP. The original image can be PNG, GIF, JPEG or TIFF. Before running the script, register the wiaaut.dll library in the system.
See also WIA documentation on MSDN.
我认为从 Windows 7 开始,Windows 就提供了 WIA DLL。
否则,您可以下载WIA
这是转换为vbscript的@Helen代码:
I think from Windows 7 WIA DLL are provided with Windows.
Otherwise you can download WIA
This is @Helen code converted to vbscript: