Heim >Backend-Entwicklung >PHP-Tutorial >怎么计算gd 函数库中类似于 imagettftext imagestring 这样的函数设置的字体大小的像素高宽??

怎么计算gd 函数库中类似于 imagettftext imagestring 这样的函数设置的字体大小的像素高宽??

WBOY
WBOYOriginal
2016-07-06 13:52:311464Durchsuche

<code>怎么计算 imagestring($source,$font_size,$x,$y,$string,$color) 中$font_size(除去预置的1-5)设置的字体大小所对应的像素值??
这边的$font_size(除去预置的1-5)设置的字体大小的单位是什么?? 即若是$font_size=15,那是指字体大小为15px??</code>

回复内容:

<code>怎么计算 imagestring($source,$font_size,$x,$y,$string,$color) 中$font_size(除去预置的1-5)设置的字体大小所对应的像素值??
这边的$font_size(除去预置的1-5)设置的字体大小的单位是什么?? 即若是$font_size=15,那是指字体大小为15px??</code>

你可以使用 imagettfbbox 函数来计算TTF字体的字符串的高度宽度, 并且用 imagettftext 来写入图像

http://php.net/manual/zh/function.imagettfbbox.php
http://php.net/manual/zh/function.imagettftext.php

补充:
你提到的 imagestring 函数, 第二个参数不是什么 fontsize 而是 font, 是GD预制的5个字体, 大小你是不能修改的, 如果你希望采用额外的字体, 需要用 imageloadfont 函数来加载, 加载的也并不是ttf字体, 所以你期望的效果如果通过这两个函数是不行的

http://php.net/manual/zh/function.imagestring.php
http://php.net/manual/zh/function.imageloadfont.php

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn