使用actionscript将favicon转换为png?

发布于 2024-12-02 04:04:28 字数 205 浏览 0 评论 0原文

使用actionscript 3,如何将网站的图标转换为16x16 .png 文件?

此解决方案不得访问在线服务,例如 http://www .google.com/s2/favicons?domain=

Using actionscript 3, how can I convert the favicon of a website to a 16x16 .png file?

this solution must specifically NOT access online services such as http://www.google.com/s2/favicons?domain=

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

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

发布评论

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

评论(1

蓝天白云 2024-12-09 04:04:28

我采取的方法是将 ico 文件(假设您的图标是 ico 文件)作为 BitmapData 引入。然后将位图数据格式化为 PNG 文件。以下是我发现的一些链接可以做到这一点。或者,您可以构建自己的解决方案,但这肯定是一个漫长的过程。

将 ico 文件导入为位图:

http://ntt.cc/2008/10/02/using-icodecoder-class-to-read-ico-file-and-display-it-as-bitmap-in-actionscript.html< /a>

从位图数据生成 PNG 文件:

http://www.kaourantin.net/2005/10/png-encoder-in-as3.html

The approach I would take is to bring in the ico file (assuming your favicons are ico files) as BitmapData. Then format the bitmap data as a PNG file. Here are some links I found to do just that. Alternatively, you could build your own solution but that would certainly be the long way round.

Importing ico files as bitmaps:

http://ntt.cc/2008/10/02/using-icodecoder-class-to-read-ico-file-and-display-it-as-bitmap-in-actionscript.html

Generating a PNG file from bitmap data:

http://www.kaourantin.net/2005/10/png-encoder-in-as3.html

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