我使用spire生成PDF文檔。所有效果都很好,但現在我想將其中一個文本字段的字體更改爲我自己的字體。任何想法如何做到這一點?我的代碼來生成PDF作爲如下Spire - 在PDF字段中設置我自己的字體
using (PdfDocument doc = new PdfDocument())
{
doc.LoadFromFile(MyFileTemplate);
PdfFormWidget formWidget = doc.Form as PdfFormWidget;
(formWidget.FieldsWidget["UserID"] as PdfTextBoxFieldWidget).Text = Username;
(formWidget.FieldsWidget["Name"] as PdfTextBoxFieldWidget).Text =Name;
(formWidget.FieldsWidget["Address"] as PdfTextBoxFieldWidget).Text = Address;
doc.SaveToFile(MyFilePath);
}
我嘗試使用
PdfTrueTypeFont font = new PdfTrueTypeFont("My Font Name", 10f);
(formWidget.FieldsWidget["Address"] as PdfTextBoxFieldWidget).Text.Font = font;
但這種力的工作