如何自动调整 GD 生成的图像的宽度以适合文本?
我正在尝试使用 GD 显示数字。这个数字会改变,所以有时宽度需要改变。有没有办法计算文本的宽度,以便我可以动态设置宽度?
I'm trying to display a number using GD. This number changes, so sometimes the width needs to change. Is there a way to calculate how wide the text will be so that I can dynamically set the width?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用
imagettfbbox()< 找出文本的尺寸/code>
(或
imageftbbox()
(如果您使用的是 Freetype)。Yes, you can find out the dimensions of a text using
imagettfbbox()
(orimageftbbox()
if you're using Freetype).