函數名 | 描述 |
---|---|
imagestring() | 水平繪製一行字串 |
imagestringup() | 垂直繪製一行字串 |
imagechar() | 水平繪製一個字元 |
imagecharup() | 垂直繪製一個字元 |
imagettftext() | 用 TrueType 字型向影象中寫入文字 |
imagestring(resource $image, int $font, int $x, int $y, string $s, int $color)
imagestringup(resource $image, int $font, int $x, int $y, string $s, int $col)
imagechar(resource $image, int $font, int $x, int $y, string $c, int $color)
imagecharup(resource $image, int $font, int $x, int $y, string $c, int $color)
<?php $str = 'http://c.biancheng.net/php/'; $img = imagecreate(300, 200); imagecolorallocate($img, 255, 255, 255); $red = imagecolorallocate($img, 255, 0, 0); imagestring($img, 5, 0, 0, $str, $red); imagestringup($img, 2, 150, 180, $str, $red); imagechar($img, 3, 50, 50, $str, $red); imagecharup($img, 4, 50, 100, $str, $red); header('Content-type:image/jpeg'); imagejpeg($img); imagedestroy($img); ?>執行結果如下圖所示: