Syncfusion Xamarin.Forms生成的PDF格式的文本

时间:2018-03-12 09:24:53

标签: android pdf xamarin.forms pdf-generation syncfusion

我想问你是否可以创建像

这样的格式化文本
  

此文字正常,此内容为粗体。我们还有一个斜体字体斜率。

以这种方式:

graphics.DrawString("This text is normal and this one is bold. We also have an italic font slope.", font, PdfBrushes.Black, new PointF(0, 0));

我尝试使用HTML样式文本(https://help.syncfusion.com/file-formats/pdf/working-with-text#adding-a-html-styled-text)来命令文档,但Xamarin不支持PdfHTMLTextElement类。 下一个选择是插入RTF文本(https://help.syncfusion.com/file-formats/pdf/working-with-text#inserting-rich-text-format-contents),它也不可能在Xamarin中使用。

我还要在PdfLightTable的单元格中放置一个格式化的字符串。你有任何提示如何实现这个目标吗?

我非常感谢你的帮助。

1 个答案:

答案 0 :(得分:0)

目前Xamarin平台不支持 PdfHTMLTextElement 。为了满足您的要求,我们创建了基于HTML标记将样式应用于文本的变通方法示例。

请找到 Sample

感谢。