imagecreatetruecolor
<?php
/*
imagecreatetruecolor
TrueColorイメージを新規に作成します。
*/
header('Content-Type:image/png');
$img = @imagecreatetruecolor(100,20)
or die("cannot create initialize new GD image stream");
$text_color = imagecolorallocate($img, 255, 255, 255);
imagestring($img, 1, 5, 5, "it is a test data", $text_color);
//画像を出力します
imagepng($img);
//メモリを解放します。
imagedestroy($img);
/*
imagecolorallocateメソッドの第2引数から第4引数までは
色の3原色の数値で赤、緑、青となります。
[出力結果]
黒い背景色に「it is a test data」という白い文字列が表示されています。
*/
?>
|
|