• 转 无损转换Image为Icon


    不可取

    var handle = bmp.GetHicon();    //得到图标句柄
    return Icon.FromHandle(handle); //通过句柄得到图标

    可取

    /// <summary>
    /// 转换Image为Icon
    /// </summary>
    /// <param name="image">要转换为图标的Image对象</param>
    /// <param name="nullTonull">当image为null时是否返回null。false则抛空引用异常</param>
    /// <exception cref="ArgumentNullException" />
    public static Icon ConvertToIcon(Image image, bool nullTonull = false)
    {
        if (image == null)
        {
            if (nullTonull) { return null; }
            throw new ArgumentNullException("image");
        }
    
        using (MemoryStream msImg = new MemoryStream()
                          , msIco = new MemoryStream())
        {
            image.Save(msImg, ImageFormat.Png);
    
            using (var bin = new BinaryWriter(msIco))
            {
                //写图标头部
                bin.Write((short)0);           //0-1保留
                bin.Write((short)1);           //2-3文件类型。1=图标, 2=光标
                bin.Write((short)1);           //4-5图像数量(图标可以包含多个图像)
    
                bin.Write((byte)image.Width);  //6图标宽度
                bin.Write((byte)image.Height); //7图标高度
                bin.Write((byte)0);            //8颜色数(若像素位深>=8,填0。这是显然的,达到8bpp的颜色数最少是256,byte不够表示)
                bin.Write((byte)0);            //9保留。必须为0
                bin.Write((short)0);           //10-11调色板
                bin.Write((short)32);          //12-13位深
                bin.Write((int)msImg.Length);  //14-17位图数据大小
                bin.Write(22);                 //18-21位图数据起始字节
    
                //写图像数据
                bin.Write(msImg.ToArray());
    
                bin.Flush();
                bin.Seek(0, SeekOrigin.Begin);
                return new Icon(msIco);
            }
        }
    }
    

      

    1. 先将image编码为png
    2. 再将png原样包装成一个icon
  • 相关阅读:
    [VC++入门]C++中常用的运算符及微软自定义类型
    搜索引擎蜘蛛爬虫原理
    Enterprise Library 5.0
    Installshield 12 中文系列教程之 定义安装必要条件
    installshield脚本
    c# 事物处理
    InStallShield网络资源参考
    Could not execute query against OLE DB provider 'OraOLEDB.Oracle'
    frameset小结
    最痛心的距离
  • 原文地址:https://www.cnblogs.com/xiangxiong/p/6437253.html
Copyright © 2020-2023  润新知