无法使用 HTML 将粗体文本从 Select.Pdf 转换为 PDF 转换器

Unable to get Bold text using HTML to PDF converter from Select.Pdf

我正在尝试将 PDF 中的文字加粗。
我正在使用 HTML 到 Select.Pdf (C#) 的 PDF 转换器。
http://selectpdf.com/

我在 html 中包含了 text style() 但最终它不起作用。
我还尝试在 HTML 中添加 strong 标签和 b 标签。但没有成功。

请大家救救我!
谢谢

能否请您提供一些未正确转换的 HTML 和正在使用的 C# 逻辑片段,以便我更好地理解?

我能够使用以下方法产生所需的结果:

SelectPdf.HtmlToPdf convertor = new SelectPdf.HtmlToPdf();
convertor.Options.PdfPageSize = SelectPdf.PdfPageSize.A4;
convertor.Options.PdfPageOrientation = SelectPdf.PdfPageOrientation.Portrait;

SelectPdf.PdfDocument doc = convertor.ConvertHtmlString("<strong>bold</strong> normal");
doc.Save("/Pdfs/test.pdf");
doc.Close();

首先我想说。您应该始终尝试向我们提供一些代码。

我猜您可能使用了一些不支持 BOLDITALIC 的独特字体。

请试一试,如果有效请告诉我。