PHP imagecharup – 垂直地畫一個(gè)字符
PHP imagecharup - 垂直地畫一個(gè)字符
imagecharup — 垂直地畫一個(gè)字符。
語法
bool imagecharup ( resource $image , int $font , int $x , int $y , string $c , int $color )
imagecharup() 將字符 c 垂直地畫在 image 指定的圖像上,位于 x,y(圖像左上角為 0, 0),顏色為 color。如果 font 為 1,2,3,4 或 5,則使用內(nèi)置的字體。
實(shí)例
<?php $im = imagecreate(100,100); $string = 'Note that the first letter is a N'; $bg = imagecolorallocate($im, 255, 255, 255); $black = imagecolorallocate($im, 0, 0, 0); // 在白色的背景上輸出黑色的 "Z" imagecharup($im, 3, 10, 10, $string, $black); header('Content-type: image/png'); imagepng($im); ?>
以上實(shí)例輸出結(jié)果的圖片如下:

相關(guān)文章
- imagechar() 水平地畫一個(gè)字符。
- imageloadfont() 載入一新字體。
相關(guān)文章
- PHP 教程
- PHP 簡介
- PHP 安裝
- PHP 常量
- PHP Secure E-mails
- PHP 高級(jí)過濾器
- PHP array() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP compact() 函數(shù)
- PHP ksort() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)
- PHP 雜項(xiàng) 函數(shù)