将多个 PNG 制作成一个 ICO 文件

发布于 2024-10-14 13:56:14 字数 1539 浏览 2 评论 0原文

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

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

发布评论

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

评论(3

゛清羽墨安 2024-10-21 13:56:14

事实证明,您也可以使用 Gimp 来做到这一点,如 此处描述

  • 打开 GIMP 中最大的图标图像。右键单击图像
    并选择“文件”->“作为图层打开...”并且
    选择所有其他图标图像。
  • 这将创建一个图像,其中一个图层包含其他每个图像
    图标图像。
  • 将图像另存为 Microsoft Windows 图标 (.ico) 图像 - 文件 -> 导出(或旧版本 GIMP 中的文件 -> 另存为),然后输入文件名,
    例如 favicon.ico。 (这将
    自动选择.ico格式)

Turns out you can also do this with Gimp, as described here:

  • Open the largest of the icon images in The GIMP. Right-click on the image
    and select File->Open as Layers... and
    select all the other icon images.
  • This will create a single image with a layer containing each of the other
    icon images.
  • Save the image as a Microsoft Windows Icon (.ico) image - File->Export (or File->Save As in older versions of GIMP), and then type in the filename,
    e.g. favicon.ico. (this will
    automatically select the .ico format)
<逆流佳人身旁 2024-10-21 13:56:14

ICOBundle - Telegraphics 的免费程序
http://www.telegraphics.com.au/sw/product/ICOBundle

您首先创建图标文件调整为所需的尺寸,然后与ICOBundle合并。为了创建图标文件,我使用 Photoshop 插件 http://www.telegraphics.com.au/sw/ Product/ICOFormat

它是一个命令行实用程序,但用法非常简单

icobundl.exe -o favicon.ico favicon16x16.ico favicon32x32.ico

ICOBundle - Free Program from Telegraphics
http://www.telegraphics.com.au/sw/product/ICOBundle

you first create icon files in the required sizes and then combine it with ICOBundle. For the creation of the icon files i use the photoshop plugin http://www.telegraphics.com.au/sw/product/ICOFormat

it is a command line utility but the usage is quite simple

icobundl.exe -o favicon.ico favicon16x16.ico favicon32x32.ico
弱骨蛰伏 2024-10-21 13:56:14

要从多个 png 文件创建 ico 文件,最好的工具之一是 png2ico

以下是下载和安装 png2ico 的不同方法

从源代码安装

此处并运行以下命令:

tar xzvf png2ico-src-2002-12-08.tar.gz
cd ./png2ico-src-2002-12-08
./configure
make
sudo make install

OSX

OSX 用户可以通过 port 直接使用 png2ico 包。您需要运行以下命令

sudo port install png2ico

命令

安装png2ico后,您可以运行以下命令来生成所需的ico文件

png2ico myicon.ico icon_16x16.png icon_32x32.png icon_64x64.png icon_128x128.png 
  • 请注意,ico文件有限制,支持的最大尺寸为高度<; 256 像素且宽度 < 256 像素。

For creating ico file out of multiple png files one of the best tools is png2ico.

Following are different ways to download and install png2ico

Installing from Source

download latest png2ico source from here and run following commands:

tar xzvf png2ico-src-2002-12-08.tar.gz
cd ./png2ico-src-2002-12-08
./configure
make
sudo make install

OSX

OSX users have the png2ico package directly available trough port. you need to run following command

sudo port install png2ico

Command

After installing png2ico you can run following command to generate required ico file

png2ico myicon.ico icon_16x16.png icon_32x32.png icon_64x64.png icon_128x128.png 
  • Note that the ico file has limitation that the maximum size supported is height < 256 pixels and width < 256 pixels.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文