在windows xp下从位图创建图标

时间:2013-07-20 08:36:31

标签: c# bitmap icons gdi+

我在windows xp下创建图标时遇到问题。 这是我的代码:

void SaveAsIcon(Bitmap SourceBitmap, string FilePath)
{

            FileStream FS = new FileStream(FilePath, FileMode.Create);
            // ICO header
            FS.WriteByte(0); FS.WriteByte(0);
            FS.WriteByte(1); FS.WriteByte(0);
            FS.WriteByte(1); FS.WriteByte(0);

            // Image size
            FS.WriteByte((byte)SourceBitmap.Width);
            FS.WriteByte((byte)SourceBitmap.Height);
            // Palette
            FS.WriteByte(0);
            // Reserved
            FS.WriteByte(0);
            // Number of color planes
            FS.WriteByte(0); FS.WriteByte(0);
            // Bits per pixel
            FS.WriteByte(32); FS.WriteByte(0);

            // Data size, will be written after the data
            FS.WriteByte(0);
            FS.WriteByte(0);
            FS.WriteByte(0);
            FS.WriteByte(0);

            // Offset to image data, fixed at 22
            FS.WriteByte(22);
            FS.WriteByte(0);
            FS.WriteByte(0);
            FS.WriteByte(0);

            // Writing actual data
            SourceBitmap.Save(FS, ImageFormat.Png);

            // Getting data length (file length minus header)
            long Len = FS.Length - 22;

            // Write it in the correct place
            FS.Seek(14, SeekOrigin.Begin);
            FS.WriteByte((byte)Len);
            FS.WriteByte((byte)(Len >> 8));

            FS.Close();
}

在vista及更高版本下运行正常。

我不知道在我的方法中应该改变什么,以便在windows xp下从位图创建图标。

当我尝试使用带有上述方法的图标时,我收到此错误:

生成Win32资源时出错:读取图标时出错

在vista下,7和8可行。

1 个答案:

答案 0 :(得分:1)

  SourceBitmap.Save(FS, ImageFormat.Png);

XP不支持PNG格式的图标,直到Vista才添加该功能。

如果XP支持很重要,您需要回退到BMP格式。请注意,仅仅更改ImageFormat是不够的,您需要确保像素格式与您在标题中写入的内容相匹配,并且不应该编写BITMAPFILEHEADER。换句话说,跳过Save()方法写入的前14个字节。