PDFlib 给 pdf_fit_textline 一个边框
我使用 PHP 和 PDFlib 动态生成 PDF,某些字段要求文本以空白字段行为中心(就像您在纸质表单上看到的那样)。为了确保我的文本字段使用可用的最大宽度并且位置正确,我想在它周围放置一个临时边框,以便我可以看到它的位置和大小。不幸的是,我在 PDFlib 手册中没有看到任何方法可以做到这一点。
有谁知道一些技巧、技巧或晦涩的文档,可以让我为这些字段提供边框或其他一些方法来确定它们的确切大小和位置?
I'm generating PDFs dynamically using PHP and PDFlib and some of the fields require text being centered on blank fields lines (like you would see on a paper form). To make sure I have the text field using the maximum width available to me as well as positioned properly I would like to place a temporary border around it so I can see where it is and its size. Unfortunately I do not see any way to do this in the PDFlib manual.
Does anyone know of a tip, trick, or obscure documentation that will allow me to either give these fields a border or some other means of determining their exact size and position?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
showborder=true
放入各种 fit/fill 调用的可选参数参数中,PDFlib 将在框周围绘制一个简单的实心边框:You can put a
showborder=true
into the various fit/fill calls' optional parameters argument, and PDFlib will draw a simple solid border around the box: