imagechar

(PHP 3, PHP 4, PHP 5)

imagechar -- 水平地畫一個字元

說明

bool imagechar ( resource image, int font, int x, int y, string c, int color )

imagechar() 將字串 c 的第一個字元畫在 image 特殊的圖像中,其左上角位於 xy(圖像左上角為 0, 0),彩色為 color。若果 font 是 1,2,3,4 或 5,則使用內建的字型(更大的數字對應於更大的字型)。

例子 1. imagechar() 例子

<?php

$im 
imagecreatetruecolor(100,100);

$string 'PHP';

$bg imagecolorallocate($im255255255);
$black imagecolorallocate($im000);

// prints a black "P" in the top left corner
imagechar($im100$string$black);

header('Content-type: image/png');
imagepng($im);

?>

參見 imagecharup()imageloadfont()