Home  >  Article  >  php教程  >  PHP获取一段文本显示点阵宽度和高度的方法

PHP获取一段文本显示点阵宽度和高度的方法

WBOY
WBOYOriginal
2016-06-06 20:07:00807browse

这篇文章主要介绍了PHP获取一段文本显示点阵宽度和高度的方法,涉及imagettfbbox函数的用法及php操作ttf文字的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP获取一段文本显示点阵宽度和高度的方法。分享给大家供大家参考。具体如下:

define("F_SIZE", 8); define("F_FONT", "arial.ttf"); function get_bbox($text){ return imagettfbbox(F_SIZE, 0, F_FONT, $text); } function text_height ($text) { $box = get_bbox($text); $height = $box[3] - $box[5]; return $height; } function text_width ($text) { $box = get_bbox($text); $width = $box[4] - $box[6]; return $width; }

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn