如何在 FPDF 中使文本居中?
如何让生成的文本显示在页面中央。
生成的 = $_POST
方法...所以我不知道输入中的文本有多长。我需要以某种方式预先确定中心参数。
有什么想法吗?也许是这样的:
MultiCell(0,$height,"text",0,'C') ?
How can I have this generated text appear centered in the page.
Generated = $_POST
method ... so I don't know how long will the text in input be. I need to have a pre-determined center parameter somehow.
Any ideas? Maybe like this:
MultiCell(0,$height,"text",0,'C') ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
通常它是
$pdf->Cell(0, $height, "text", 0, 0, 'C');
但如果您在页眉或页脚函数中执行此操作,则它是$this->Cell(0, $height, "text", 0, 0, 'C')
。如果您在 function() 调用中执行此操作,请不要忘记将$height
声明为全局变量。Normally it's
$pdf->Cell(0, $height, "text", 0, 0, 'C');
but if you're doing it in a Header or Footer function it's$this->Cell(0, $height, "text", 0, 0, 'C')
. Don't forget to declare$height
as a global if you're doing this in a function() call.谢谢牛牛!这对我有用:
Thanks taur! This works for me:
这可能对你有用
This may work for you
这对我有用
This worked for me