I try to add a the font "Open Sans" to my pdf file that I create with AbcPdf 7. But the font is not being used. Why is that?
Doc odfDoc = new Doc();
odfDoc.FontSize = 216;
string daFont = "Open Sans";
odfDoc.Font = odfDoc.EmbedFont(daFont);
odfDoc.AddText(daFont);
odfDoc.Save(AppDomain.CurrentDomain.BaseDirectory + "\\font.pdf");
odfDoc.Clear();