0

我想将样式应用于

字符串“Helloword”

并具有样式属性

比如 fontFamily='Verdana'、fontStyle='bold'、FontSize='12'、textDecoration='underline'、textAlign='center'、fontColor='#FF0000'、x=100 和 y=100。

我想使用 PDFsharp 在 PDF 中显示这个字符串。谁能建议我怎么做?

我正在使用XFontandXGraphics.DrawString方法,但我无法应用上述所有样式。

4

1 回答 1

2

该字符串略有错误,但我希望满足所有其他要求:

// Create a font
XFont font = new XFont("Verdana", 12, XFontStyle.Bold | XFontStyle.Underline);

// Draw the text
gfx.DrawString("Hello, World!", font, new XSolidBrush(XColor.FromArgb(255, 0, 0)),
  100, 100,
  XStringFormats.Center);
于 2013-07-20T18:44:51.473 回答