有代碼:拉繩大膽和普通文本
using (Graphics g = Graphics.FromImage(pictureBox1.Image))
{
Font drawFont = new Font("Arial", 12);
Font drawFontBold = new Font("Arial", 12, FontStyle.Bold);
SolidBrush drawBrush = new SolidBrush(Color.Black);
g.DrawString("this is normal", drawFont, drawBrush, new RectangleF(350f, 250f, 647, 200));
g.DrawString(" and this is bold text", drawFontBold, drawBrush, new RectangleF(350f, 250f, 647, 200));
}
我需要得到
這是正常的,這是大膽的文字
但我收到第二覆蓋第一個文字
矩形指定positiom。兩個文本具有相同的座標。 – alko989
在第二個DrawString中更改647和200,關於正確調用MeasureString方法來連接它 – Nigrimmist