PDFlib 给 pdf_fit_textline 一个边框

发布于 2024-09-27 15:12:31 字数 218 浏览 7 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫九 2024-10-04 15:12:31

您可以将 showborder=true 放入各种 fit/fill 调用的可选参数参数中,PDFlib 将在框周围绘制一个简单的实心边框:

PDF_fit_textline($handle, 'blah blah blah', $fontsize, $x, $y, 'boxsize={ 50 100 } showborder=true');

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:

PDF_fit_textline($handle, 'blah blah blah', $fontsize, $x, $y, 'boxsize={ 50 100 } showborder=true');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文