测量 PHP 中的字符串?

发布于 2024-09-07 21:02:28 字数 72 浏览 2 评论 0原文

ASP 有一个 MeasureString 函数,它返回给定特定字体/大小的字符串的宽度(以像素为单位)。这在 PHP 中可能吗?

ASP has a MeasureString function that returns the width, in pixels, of a string given a certain font/size. Is this possible in PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

你的笑 2024-09-14 21:02:28

是的,使用GD库。

http://www.php.net/manual/en/function.imagettfbbox.php

这适用于在图像上呈现的文本。
文本宽度根据浏览器、操作系统的不同而略有不同(字体平滑、不同的渲染)

Yes, using GD library.

http://www.php.net/manual/en/function.imagettfbbox.php

this is for text rendered on an image.
Text width varies a bit depending on the browser, OS (font smoothing, different rendering)

才能让你更想念 2024-09-14 21:02:28

如果你安装了GD,也许你可以使用 imagettfbbox 函数

Perhaps you could use the imagettfbbox function if you have GD installed

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文