imagechar — 寫出橫向的字元。
bool imagechar ( resource $image , int $font , int $x , int $y , string $c , int $color )
imagechar() 將字串c 的第一個字元畫在image 指定的圖像中,其左上角位於x,y(圖像左上角為0, 0),顏色為color。如果font 是1,2,3,4 或5,則使用內建的字體(較大的數字對應於較大的字體)。
<?php$im = imagecreate(100,100);$string = 'PHP';$bg = imagecolorallocate($im, 255, 255, 255);$black = imagecolorallocate($im, 0, 0, 0);左上角輸出字元Pimagechar($im, 5, 0, 0, $string, $black);header('Content-type: image/png');imagepng($im);?>
以上實例輸出結果的圖片如下: