如题

解决方案 »

  1.   

    http://blog.csdn.net/qqwwee_com/archive/2005/09/16/481903.aspx#region 广告开始  CSDN小助手 V2.5,更快、更爽、更方便的浏览CSDN论坛!
      界面:http://blog.csdn.net/Qqwwee_Com/archive/2005/11/05/523395.aspx
      下载:http://szlawbook.com/csdnv2#endregion
      

  2.   

    CreateRegion
    通过文字创建 Region 对象
      

  3.   

    GraphicsPath边是描在里面的,粗一点就有问题了
    大字和小字叠在一起应该不会有这个效果吧
      

  4.   

    回复人: inshua(孟昭) ( ) 信誉:95  2005-12-07 09:12:00  得分: 0  
     
     
       CreateRegion
    通过文字创建 Region 对象
      
     
      

  5.   

    Graphics g = this.CreateGraphics();
    System.Drawing.Drawing2D.GraphicsPath path = new System.Drawing.Drawing2D.GraphicsPath();
    path.AddString("我爱谢燕丽。",
    new FontFamily("楷体_GB2312"),
    3,
    72,
    new Point(0,0),
    new StringFormat());
    g.DrawPath(new Pen(Color.Black),path);