zoukankan      html  css  js  c++  java
  • System.Drawing.Text.TextRenderingHint 的几种效果

                for (int i = 0; i < 6; i++)
                {
                    g5.TextRenderingHint = (System.Drawing.Text.TextRenderingHint)i;
                    string txt;
                    int font_sz = 25;
    
                    txt = "Static 测试 ";
                    switch ((System.Drawing.Text.TextRenderingHint)i)
                    {
                        case System.Drawing.Text.TextRenderingHint.SystemDefault:
                            txt += "SystemDefault";
                            g5.DrawString(txt, new Font("Times New Roman", font_sz), new SolidBrush(Color.Black),
                                new PointF(this._parentControl.Width - 400, 30 + 35 * i));
                            break;
                        case System.Drawing.Text.TextRenderingHint.AntiAlias:
                            txt += "AntiAlias";
                            g5.DrawString(txt, new Font("Times New Roman", font_sz), new SolidBrush(Color.Black),
                                new PointF(this._parentControl.Width - 400, 30 + 35 * i));
                            break;
                        case System.Drawing.Text.TextRenderingHint.AntiAliasGridFit:
                            txt += "AntiAliasGridFit";
                            g5.DrawString(txt, new Font("Times New Roman", font_sz), new SolidBrush(Color.Black),
                                new PointF(this._parentControl.Width - 400, 30 + 35 * i));
                            break;
                        case System.Drawing.Text.TextRenderingHint.ClearTypeGridFit:
                            txt += "ClearTypeGridFit";
                            g5.DrawString(txt, new Font("Times New Roman", font_sz), new SolidBrush(Color.Black),
                                new PointF(this._parentControl.Width - 400, 30 + 35 * i));
                            break;
                        case System.Drawing.Text.TextRenderingHint.SingleBitPerPixel:
                            txt += "SingleBitPerPixel";
                            g5.DrawString(txt, new Font("Times New Roman", font_sz), new SolidBrush(Color.Black),
                                new PointF(this._parentControl.Width - 400, 30 + 35 * i));
                            break;
                        case System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit:
                            txt += "SingleBitPerPixelGridFit";
                            g5.DrawString(txt, new Font("Times New Roman", font_sz), new SolidBrush(Color.Black),
                                new PointF(this._parentControl.Width - 400, 30 + 35 * i));
                            break;
                        default:
                            break;
                    }
                }
  • 相关阅读:
    jquery 只能输入汉字
    实现鼠标移到某个对象,在旁边显示层。
    jquery 清空页面中radio选项
    oracle 删除表中重复的数据
    jQuery 获取屏幕高度、宽度
    jquery清空from表单中的所有数据
    oracle sql语句大全
    mysql sql语句大全
    Java精品书籍推荐
    小萌库
  • 原文地址:https://www.cnblogs.com/arxive/p/7798327.html
Copyright © 2011-2022 走看看