欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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

程序员文章站 2022-06-12 11:36:15
...

定义

写 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 !! 的白字。

  1. ?php
  2. header("content-type: image/gif");
  3. $im = imagecreate(400,30);
  4. $black = imagecolorallocate($im,
    0,0,0);
  5. $white = imagecolorallocate($im,
    255,255,255);
  6. imagettftext($im, 20, 0, 10, 20,
    $white, "/somewhere/arial.ttf",
    "i am number one !!");
  7. imagegif($im);
  8. imagedestroy($im);
  9. ?>