VB6 从 ImageList 中提取图像(任何类型)

发布于 2024-10-21 17:28:29 字数 111 浏览 1 评论 0原文

从 ImageList 中提取图像(任何类型)并将其保存为扩展名为

Imagelist的文件

Extract Images (any kind) from a ImageList and save it as a file with extension

Imagelist

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

雪化雨蝶 2024-10-28 17:28:29

您是否已经尝试过使用 ExtractIcon 方法?这将返回一个表示 ListImage 项目图标的 IPictureDisp 对象。

然后,一旦提取了图片对象,您只需调用 SavePicture 函数即可将其保存到磁盘上的文件中。

所以你可以使用类似下面的代码:

Dim myPic As Picture
Set myPic = ImageList1.ListImages(1).ExtractIcon
SavePicture myPic, "C:\MyIcon.ico"  '(never hardcode a path in your actual code!)

Have you already tried using the ExtractIcon method? That will return an IPictureDisp object representing an icon of the ListImage item.

Then, once you have extracted the picture object, you can simply call the SavePicture function to save it to a file on disk.

So you could use something like the following code:

Dim myPic As Picture
Set myPic = ImageList1.ListImages(1).ExtractIcon
SavePicture myPic, "C:\MyIcon.ico"  '(never hardcode a path in your actual code!)
素罗衫 2024-10-28 17:28:29

我认为这就是你想要的: http://btmtz.mvps.org/gfxfromfrx/

我发现非常方便。

I think this is what you want: http://btmtz.mvps.org/gfxfromfrx/

I found pretty handy.

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