C# ico转png
2021-06-08 17:04
标签:详情 路径 ram bsp name star div bin tostring C# ico转png 标签:详情 路径 ram bsp name star div bin tostring 原文地址:https://www.cnblogs.com/RedSky/p/10683470.html class Program
{
static void Main(string[] args)
{
Console.WriteLine("ICO文件转PNG");
string path = null;
bool got = false;
while (!got)
{
Console.WriteLine("请输入需要转换的文件完整路径,然后按下回车。");
path = Console.ReadLine();
if (!File.Exists(path))
Console.WriteLine("找不到文件,请确认路径是否正确。");
else
got = true;
}
try
{
string save = Path.Combine(Path.GetDirectoryName(path), DateTime.Now.ToFileTime().ToString() + ".png");
new Icon(path).ToBitmap().Save(save, ImageFormat.Png);//这里还可以转换成其他类型图片,详情ImageFormat
Console.WriteLine("转换成功。");
Process.Start(Path.GetDirectoryName(save));
}
catch { }
Console.ReadKey();
}
}
上一篇:wpf UI 元素类型