VB6 PictureBox SavePicture - 将图片保存为png?
使用VB6 PictureBox,如何保存为png格式?
With VB6 PictureBox, how do I save to the png format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
使用VB6 PictureBox,如何保存为png格式?
With VB6 PictureBox, how do I save to the png format?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
你不能。 VB6 PictureBox 仅支持位图、图标、图元文件、GIF 和 JPEG 图像类型。如果您想处理 PNG 文件,则需要使用其他工具。也许是 Windows 映像采集自动化库将对您有用。
You can't. The VB6 PictureBox only supports Bitmap, icon, metafile, GIF, and JPEG image types. You'll need to use something else if you wish to work with PNG files. Perhaps the Windows Image Acquisition Automation Library would be of use to you.
查看 LaVolpe 的 32bpp Suite 中的 cPNGWriter.cls 文件:
http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=67466&lngWId=1
正如类注释中所述,它确实需要 zlib。
Check out the cPNGWriter.cls file in LaVolpe's 32bpp Suite:
http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=67466&lngWId=1
As stated in the class comments, it does require zlib.
您可以编写一个DLL在VB.Net中保存为PNG,然后从VB6调用 。来自 VB6 图形大师 Rod Stephens
You can write a DLL to save in PNG in VB.Net and then call from VB6. From VB6 graphics guru Rod Stephens
最好和最简单方法 - 使用GDIPlus库。
如果你不知道怎么做,google一下
The best and easiest way - use the GDIPlus Library.
If you don't know how, google it