imagestring
(PHP 3, PHP 4, PHP 5)
imagestring -- 文字列を水平に描画する
説明
bool
imagestring ( resource image, int font, int x, int y, string string, int color )
指定した座標に文字列 string
を描画します。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例
例 1. imagestring() の例
<?php // 100*30 の画像を生成します $im = imagecreate(100, 30);
// 白色の背景と青色のテキスト $bg = imagecolorallocate($im, 255, 255, 255); $textcolor = imagecolorallocate($im, 0, 0, 255);
// 左上に文字列を描画します imagestring($im, 5, 0, 0, "Hello world!", $textcolor);
// 画像を出力します header("Content-type: image/png"); imagepng($im); ?>
|
上の例の出力は、たとえば
以下のようになります。 |