当在jsPDF中对文本应用Angular 时,似乎文本围绕其基线的左点旋转,而我的目标是围绕其中心旋转文本。
这是我正在使用的代码:
// Create the jsPDF instance
doc = new jsPDF({
orientation: 'p',
unit: 'mm',
format: [250, 180]
});
// Rotate the text
doc.text("Text to rotate", 80, 80, {
angle: 45
});
// Save the document
doc.save();
在文档中,text()
方法中没有允许将旋转原点设置为文本字段中心的属性。
有没有办法绕过这个限制?
2条答案
按热度按时间x6492ojm1#
给予看它会计算中心并调整它。
ryhaxcpt2#
您只需要添加文本高度的一半。