Write text on an image in C#

后端 未结 5 1244
梦毁少年i
梦毁少年i 2020-11-28 05:06

I have the following problem. I want to make some graphics in bitmap image like bond form

i can write a text in image
but i will write more text in various posit

5条回答
  •  感动是毒
    2020-11-28 05:46

    If Someone has trouble with this code lines:

    using(Graphics graphics = Graphics.FromImage(bitmap))
    

    The solution is :

    Bitmap bitmap = (Bitmap)**System.Drawing.Image.FromFile**(@"C:\Documents and Settings\", true);
    

提交回复
热议问题