以下是一段C#代码,用于将PNG文件转换为ICNS文件格式。这段代码使用了System.Drawing和System.IO命名空间,需要将这两个命名空间添加到项目中。

using System.Drawing;
using System.IO;

public void ConvertPngToIcns(string pngFilePath, string icnsFilePath)
{
    // Load the PNG image from file
    Image pngImage = Image.FromFile(pngFilePath);

    // Define the sizes for the ICNS file
    int[] sizes = { 16, 32, 64, 128, 256, 512, 1024 };
    int[] bitDepths = { 32, 8, 24 };

    // Create the ICNS file
    using (FileStream icnsFile = new FileStream(icnsFilePath, FileMode.Create))
    {
        // Write the ICNS header
        icnsFile.Write(new byte[] { 0x69, 0x63, 0x6E, 0x73 }, 0, 4);

        // Loop through the different sizes and bit depths to create the ICNS file
        foreach (int size in sizes)
        {
            foreach (int bitDepth in bitDepths)
            {
                Bitmap resizedBitmap = new Bitmap(pngImage, new Size(size, size));

                // Set the PNG image's bit depth to the specified value
                if (bitDepth != 32)
                {
                    resizedBitmap = resizedBitmap.Clone(new Rectangle(0, 0, resizedBitmap.Width, resizedBitmap.Height), PixelFormat.Format8bppIndexed);
                }

                // Write the icon data to the ICNS file
                using (MemoryStream iconData = new MemoryStream())
                {
                    resizedBitmap.Save(iconData, ImageFormat.Png);

                    // Write the icon data size and type to the ICNS file
                    icnsFile.Write(BitConverter.GetBytes(IPAddress.HostToNetworkOrder(iconData.Length)), 0, 4);
                    icnsFile.Write(new byte[] { 0x69, 0x63, 0x6E, 0x73, (byte)bitDepth, (byte)size, (byte)size, (byte)0x00 }, 0, 8);
                    iconData.WriteTo(icnsFile);
                }
            }
        }
    }
}

这个函数接受两个参数,分别是PNG文件路径和ICNS文件路径。在函数中,我们使用System.Drawing命名空间中的Image和Bitmap类来加载和处理PNG图像,使用System.IO命名空间中的FileStream和MemoryStream类来读取和写入文件。函数将会创建一个包含各种大小和位深度的ICNS文件,适用于不同的屏幕尺寸和显示设置。