测量 PHP 中的字符串?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,使用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)
如果你安装了GD,也许你可以使用 imagettfbbox 函数
Perhaps you could use the imagettfbbox function if you have GD installed