我有以下问题.我想在位图图像中制作一些图形,如债券形式
我可以在图像中写一个文字,
但我会在不同的位置写更多的文字
Bitmap a = new Bitmap(@"path\picture.bmp");
using(Graphics g = Graphics.FromImage(a))
{
g.DrawString(....); // requires font, brush etc
}
Run Code Online (Sandbox Code Playgroud)
如何编写文本并保存并在保存的图像中写入另一个文本