应该可以,我用GDI+绘制过空心字等特效字,边框颜色应该没有问题,你使用路径试一下。

解决方案 »

  1.   

    在一个矩形中添加文字:
    string text = "Output Text";FontFamily fontFamily = new FontFamily("Arial");
    Font font = new Font(
    fontFamily,
    12,
    FontStyle.Bold,
    GraphicsUnit.Point);
    Rectangle rect = new Rectangle(30, 10, 100, 122);
    SolidBrush solidBrush = new SolidBrush(Color.FromArgb(255, 0, 0, 255));e.Graphics.DrawString(text, font, solidBrush, rect); Pen pen = Pens.Black;
    e.Graphics.DrawRectangle(pen, rect);
      

  2.   

    是根据字形绘制边框。
     cherishl() 你的镂空字的代码能贴出来学习学习吗?