如何从 png 图像中获取图标?
我正在创建一个 WPF 应用程序,因此我主要使用图标的 ImageSource 类。 但是,系统托盘图标必须是 System.Drawing.Icon
类型。 是否可以从 png 图像创建这样的对象?
我已尝试以下操作:
private static System.Drawing.Icon _pngIcon;
public static System.Drawing.Icon PngIcon
{
get
{
if (_pngIcon == null)
{
//16x16 png image (24 bit or 32bit color)
System.Drawing.Bitmap icon = global::BookyPresentation.Properties.Resources.star16;
MemoryStream iconStream = new MemoryStream();
icon.Save(iconStream, System.Drawing.Imaging.ImageFormat.Png);
iconStream.Seek(0, SeekOrigin.Begin);
_pngIcon = new System.Drawing.Icon(iconStream); //Throws exception
}
return _pngIcon;
}
}
Icon 构造函数抛出异常并显示以下消息:“参数‘图片’必须是可用作图标的图片。”
我认为这可能与图像颜色的位深度有关,因为我之前遇到了一些问题,但 32 位和 24 位图像都不起作用。 我想做的事情可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我认为您可以在将图像转换为 .ico 之前尝试类似的操作:
其中
icon
将包含您需要的图标。I think you can try something like this before convert your image to .ico:
Where
icon
will contain the icon which you need.还有一个将 PNG 转换为 ICO 的网站 (http://www.convertico.com/)。
There's also a website (http://www.convertico.com/) which converts PNGs into ICOs.
图标是 3 或 4 种图像尺寸的组合:
48 × 48、32 × 32、24 × 24(可选)和 16 × 16 像素。
并且还可以/应该包含三种不同的颜色深度:
所以.png 内存流不适合图标的构造函数。 事实上,如果您阅读其他构造函数重载的注释,您将看到所有“尺寸”或宽度和高度测量值,以便在文件中查找正确尺寸的图标。
有关手动创建图标的更多信息,请参阅“创建 Windows XP 图标”
Icons are a combination of 3 or 4 image sizes:
48 × 48, 32 × 32, 24 × 24 (optional), and 16 × 16 pixels.
And can/should also contain three different colour depths:
So the .png memory stream isn't going to fit into the icon's constructor. In fact, if you read the notes on the other constructor overloads, you'll see all the "Size" or Width and Height measurements for finding the correct size icon in the file.
More information on the manual creation of icons can be found under "Creating Windows XP Icons"
有一个名为 IconLib 的 .NET 项目。
There is a .NET project called IconLib.
试试这个对我有用,
Try this its working for me,
您可以将窗口图标的
ImageSource
设置为 png 图像,并且效果令人惊讶。 不过我还没有验证托盘图标的这一点。You can set the
ImageSource
of a window icon to a png image and it works, surprisingly. I haven't verified this for tray icons though.您可以尝试一个名为 png2ico 的小型命令行应用程序。 我用它从 png 创建 Windows 图标。
You could try a small command line app called png2ico. I use it to create Windows icons from pngs.