GDI+学习记录(17)-获取系统已安装的所有字体

本文介绍了一个使用C#绘制系统中所有已安装字体的方法。通过遍历InstalledFontCollection获取字体系列,并利用Graphics对象将其显示在一个窗体上。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

private void Form1_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;
            g.Clear(Color.White);
            g.SmoothingMode = SmoothingMode.AntiAlias;

            //定义输出字体
            Font myFont = new Font("Arial", 15, FontStyle.Regular, GraphicsUnit.Pixel);

            //定义文本输出格式
            StringFormat strFmt = new StringFormat();
            strFmt.Alignment = StringAlignment.Near;
            strFmt.LineAlignment = StringAlignment.Near;

            string tempStr = string.Empty;

            //获取系统所有已安装的字体系列
            InstalledFontCollection installedCollection = new InstalledFontCollection();
            FontFamily[] fontFamilyArray = installedCollection.Families;
            int index = 0;

            //访问 fontFamilyArray 数组中的每一个成员
            foreach (FontFamily i in fontFamilyArray)
            {
                //获取当前字体系统的名称
                tempStr += i.Name + ",";
                index++;
            }

            //绘制所有字体
            Rectangle textOutRect = new Rectangle(0, 15, Width, Height);
            g.DrawString(tempStr, myFont, Brushes.Black, textOutRect, strFmt);

            tempStr = string.Format("系统中已经安装的字体有{0}种,其名称分别为:\n", index + 1);
            g.DrawString(tempStr,myFont,Brushes.Red,new PointF(0,0));
        }


效果图:

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值