(PHP 4, PHP 5)
imagecreate — パレットを使用する新規画像を作成する
imagecreate() は、 指定した大きさの空の画像を表す画像 ID を返します。
imagecreatetruecolor() を使うことを推奨します。
画像の幅。
画像の高さ。
成功した場合に画像リソース ID、エラー時に FALSE を返します。
例1 新しい GD 画像ストリームの作成および画像の出力
<?php
header("Content-Type: image/png");
$im = @imagecreate(110, 20)
or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>
上の例の出力は、 たとえば以下のようになります。