Heim  >  Artikel  >  php教程  >  如何应用PHP函数imagettftext处理图片

如何应用PHP函数imagettftext处理图片

WBOY
WBOYOriginal
2016-06-13 11:10:341545Durchsuche

定义

写 ttf 文字到图中。

语法:

array imagettftext(int im, int size, int angle, int x, int y, int col, string fontfile, string text);

返回值:

数组

函数种类:

图形处理

PHP函数imagettftext内容说明:

本函数将 ttf (truetype fonts) 字型文字写入图片。参数 size 为字形的尺寸;angle 为字型的角度,顺时针计算,0 度为水平,也就是三点钟的方向 (由左到右),90 度则为由下到上的文字;x,y 二参数为文字的坐标值 (原点为左上角);

参数 col 为字的颜色;fontfile 为字型文件名称,亦可是远端的文件;text 当然就是字符串内容了。返回值为数组,包括了八个元素,头二个分别为左下的 x、y 坐标,第三、四个为右下角的 x、y 坐标,第五、六及七、八二组分别为右上及左上的 x、y 坐标。治募米⒁獾氖怯使用本函数,系统要装妥 gd 及 freetype 二个函数库。

PHP函数imagettftext使用范例

本例建立一个 400x30 pixel 大小的黑底图,并用 arial 向量字体写出 i am number one !! 的白字。

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span> ?php  </span></span></span></li>
<li><span>header("content-type: image/gif");  </span></li>
<li class="alt">
<span>$</span><span class="attribute">im</span><span> = </span><span class="attribute-value">imagecreate</span><span>(400,30);  </span>
</li>
<li>
<span>$</span><span class="attribute">black</span><span> = </span><span class="attribute-value">imagecolorallocate</span><span>($im,<br> 0,0,0);  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">white</span><span> = </span><span class="attribute-value">imagecolorallocate</span><span>($im, <br>255,255,255);  </span>
</li>
<li><span>imagettftext($im, 20, 0, 10, 20, <br>$white, "/somewhere/arial.ttf", <br>"i am number one !!");  </span></li>
<li class="alt"><span>imagegif($im);  </span></li>
<li><span>imagedestroy($im);  </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>


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