imagecreate
(PHP 3, PHP 4, PHP 5)
imagecreate -- パレットを使用する新規画像を作成する
説明
resource
imagecreate ( int width, int height )
imagecreate() は、
指定した大きさの空の画像を表す画像 ID を返します。
imagecreatetruecolor()
を使うことを推奨します。
パラメータ
width
画像の幅。
height
画像の高さ。
返り値
成功した場合に画像リソース 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); ?>
|
上の例の出力は、たとえば
以下のようになります。 |