首頁 > 後端開發 > php教程 > php imagettftext函数有什么用

php imagettftext函数有什么用

PHPz
發布: 2020-09-04 17:17:54
原創
2012 人瀏覽過

php imagettftext函数的作用是使用TrueType字体将给定文本写入图像,其语法是“array imagettftext( $image,$size,$angle,$x,$y,$color,$fontfile,$text)”。

php imagettftext函数有什么用

php imagettftext函数有什么用?

php imagettftext()函数使用TrueType字体将给定文本写入图像。

句法

PHP imagettftext()函数具有以下语法。

array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
登入後複製

参数

image - 图像资源。

size - 字体大小。

angle - 以度为单位的角度,0度为从左到右读取文本。

x - x和y给出的坐标将定义第一个字符的基点。

y - 纵坐标。

color - 颜色索引。

fontfile - TrueType字体的路径。

实例

<?php

     $image = imagecreate(400,300);
     $blue = imagecolorallocate($image, 0, 0, 255);
     $white = ImageColorAllocate($image, 255,255,255);                                           
     imagettftext($image, 44, 15, 50, 200, $white,"ARIAL", "java2s.com");
     // Set the content-type
     header("content-type: image/png");
     imagepng($image);
     imagedestroy($image);
?>
登入後複製

更多相关知识,请访问PHP中文网

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板