32x32px .ico 文件的最大可能大小是多少?

发布于 2024-08-25 01:59:23 字数 56 浏览 7 评论 0原文

我正在制作一个 favicon.ico 脚本,我需要知道可能的最大位数。

I'm making a favicon.ico script, and I need to know the max amount of bits possible.

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

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

发布评论

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

评论(3

演出会有结束 2024-09-01 01:59:23

这取决于您使用的颜色数量。

对于 8 位(256 色):

32 * 32 * 8 = 8192 bits
8192 / 8 = 1024 bytes
1024 bytes = 1Kb

对于 32 位(1670 万色):

32 * 32 * 32 = 32768 bits
32768 / 8 = 4096 bytes
4096 bytes = 4Kb

请参阅 wikipedia

It depends on the number of colours you are using.

For 8bit (256 colours):

32 * 32 * 8 = 8192 bits
8192 / 8 = 1024 bytes
1024 bytes = 1Kb

For 32bit (16.7 million colours):

32 * 32 * 32 = 32768 bits
32768 / 8 = 4096 bytes
4096 bytes = 4Kb

See wikipedia.

↘人皮目录ツ 2024-09-01 01:59:23

它的最大尺寸为每像素 32 位,24 RGB 加上 alpha 透明度,因此为 32 x 32 x 32,即 32768 位。

所以 4096 字节 (4K)。

It maxes out at 32 bits per pixel, 24 RGB plus alpha transparency, so that would be 32 x 32 x 32, or 32768 bits.

So 4096 bytes (4K).

顾挽 2024-09-01 01:59:23

In theory, a single ico file can contain up to 65,535 images (see header description). That would mean that the maximum number of pixels could be as large as 65535*32*32, which at 4 bytes per pixel comes to 268,435,456 bytes.

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