作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用包 PDF 在 flutter 中生成 pdf ,这是我的代码:
final doc = pw.Document();
var data = await rootBundle.load("assets/fonts/arial.ttf");
var myFont = Font.ttf(data);
String test = 'الشكرمون طاخ فى الترارولى';
var data2 = utf8.encode(test);
doc.addPage(
pw.Page(
build: (pw.Context context) => pw.Center(
child: pw.Text(test, style: pw.TextStyle(fontSize: 80,font: myFont)),
),
),
);
这是它的生成方式:
最佳答案
只需添加 textDirection: pw.TextDirection.rtl
到正文 小部件,像这样:
pw.Page(
build: (pw.Context context) => pw.Center(
child: pw.Text(test, style: pw.TextStyle(fontSize: 80,font: myFont),textDirection:
pw.TextDirection.rtl),
),
),
注意:如果文本包含一些数字,可能会出现问题
关于android - 如何在flutter pdf生成中添加阿拉伯字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62904622/
我是一名优秀的程序员,十分优秀!