我试图用PDF格式化我的文字 我从Select.Pdf(C#)使用HTML到PDF转换器 http://selectpdf.com/
我在html中包含了text style()但最终却无法正常工作 我还尝试在HTML中添加强标记和b标记。但没有成功。
请有人救我! 感谢
答案 0 :(得分:3)
首先我想说。您应该始终尝试向我们提供一些代码。
我猜您可能会使用一些不支持 BOLD 或 ITALIC 的独特字体。
请试一试,如果有效,请告诉我。
答案 1 :(得分:0)
您能否提供一些未正确转换的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();