PHP imagechar – 寫出橫向字符
PHP imagechar - 寫出橫向字符
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,則使用內(nèi)置的字體(更大的數(shù)字對應(yīng)于更大的字體)。
實(shí)例
<?php $im = imagecreate(100,100); $string = 'PHP'; $bg = imagecolorallocate($im, 255, 255, 255); $black = imagecolorallocate($im, 0, 0, 0); // 左上角輸出字符 P imagechar($im, 5, 0, 0, $string, $black); header('Content-type: image/png'); imagepng($im); ?>
以上實(shí)例輸出結(jié)果的圖片如下:

相關(guān)文章
- PHP 教程
- PHP 安裝
- PHP 語法
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 文件上傳
- PHP array_combine() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP ksort() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Math 函數(shù)