http://61.129.64.135/shop_2005/sdj/sdj.aspx
输入名字后可以把名字合成到图片上。

解决方案 »

  1.   

    public void DrawStringFloatFormat(PaintEventArgs e)
    {
    // Create string to draw.
    String drawString = "Sample Text";
    // Create font and brush.
    Font drawFont = new Font("Arial", 16);
    SolidBrush drawBrush = new SolidBrush(Color.Black);
    // Create point for upper-left corner of drawing.
    float x = 150.0F;
    float y =  50.0F;
    // Set format of string.
    StringFormat drawFormat = new StringFormat();
    drawFormat.FormatFlags = StringFormatFlags.DirectionVertical;
    // Draw string to screen.
    e.Graphics.DrawString(drawString, drawFont, drawBrush, x, y, drawFormat);
    }
    msdn上的.自己看看吧
      

  2.   

    http://blog.csdn.net/dudu8686/archive/2004/09/12/ChrToImages.aspx
      

  3.   

    http://www.cnblogs.com/a7lang/archive/2004/12/29/83575.html跟这个一个道理