TCPDF 页面边框?
我试图在 TCPDF 中生成的每个页面周围实现简单的 1px 实心红色边框。以前使用其他 PDF 脚本时,我在进行一些粗略计算后被迫绘制一个矩形,获取页面宽度和高度以及 -20px(以允许每边 10px 缩进)。但是我不确定如何使用 TCPDF 获得类似的结果。
有人有经验吗?
I'm trying to achieve simple 1px solid red border around each page generated in TCPDF. Previously using other PDF scripts I was forced to draw a rectangle after doing some rough calculations with getting the page width and height and -20px (to allow for 10px indentation on each side). However I'm unsure how I can achieve a similar result with TCPDF.
Does anyone have any experience?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
开始吧(这将在当前页面周围画一条 15 点的黑线)
Here you go (this will draw a black line of 15 points around the current page)
使用矩形:
Use Rect:
您可以使用 TCPDF Line 函数并在页面的每一侧创建四条线。
You can use the TCPDF Line function and create four lines around each side of the page.
尝试这样:
Try like this: