我想获取点 X 和 Y 值,以便可以在右上角绘制一个字符串。我正在这样做:
string str = "A quick brown fox is absent";
pointX = Convert.ToInt32(img.Width - str.Length);
pointX = pointX - 20; //so that I have 20 pixels after the string
pointY = 20; // 20 pixels from the top
生成的图像是:
但我想要这个:
(虽然字符串不清楚,用Paint编辑)
任何帮助表示赞赏。
更新:
font: Calibri
size: 20
需要编辑我的代码或示例代码。