我目前正在使用以下代码向图像添加文本:
using (GraphicsPath graphicsPath = new GraphicsPath())
{
graphicsPath.AddString(
"sample text",
new FontFamily("Times New Roman"),
(int)FontStyle.Bold,
graphics.DpiY * 12 / 72,
new PointF(0,0),
StringFormat.GenericDefault
);
graphics.FillPath(new SolidBrush(Color.Red), graphicsPath);
}
我这样做是为了以后可以添加文本边框。
我希望能够为特定的 X/Y 值倾斜文本,但不知道该怎么做。对 GDI 有点陌生。
任何帮助将不胜感激。