imagecharup是一個函式。
基本介紹
- 中文名:imagecharup
- 性質:垂直地畫一個字元
- 作用:指令
- 用途:作圖
簡介,說明,使用範例,
簡介
(PHP 3, PHP 4, PHP 5)imagecharup -- 垂直地畫一個字元婆邀臭
說明
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,則使用內置的字型照組乎嫌。霸榜炒
使用範例
$im = imagecreatetruecolor(100,100);
$string = 'Note that the first letter is a N';
$bg = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
// prints a black "Z" on a white background
imagecharup($im, 3, 10, 10, $string, $black);
header('Content-type: image/png');
imagepng($im);
?>