使用ImageCreate()創建一個代表空白圖像的變量,這個函數要求以像素為單位的圖像大小的參數,其格式是ImageCreate(x_size, y_size)。如果要創建一個大小為250×250的圖像,就可以使用下面的語句:
<? header ("content-type: image/png");
使用imagecreate()創建一個代表空白圖像的變量,這個函數要求以像素為單位的圖像大小的參數,其格式是imagecreate(x_size, y_size)。如果要創建一個大小為250×250的圖像,就可以使用下面的語句:
$newimg = imagecreate(250,250);
由於圖像還是空白的,因此你可能會希望用一些彩色來填充它。你需要首先使用imagecolorallocate()函數用其rgb值為這種顏色指定一個名字,這一函數的格式為imagecolorallocate([image], [red], [green], [blue])。如果要定義天藍色,可以使用如下的語句:
$skyblue = imagecolorallocate($newimg,136,193,255);
接下來,需要使用imagefill()函數用這種顏色填充這個圖像,imagefill()函數有幾個版本,例如imagefillrectangle()、imagefillpolygon()等。為簡單起見,我們通過如下的格式使用imagefill()函數:
imagefill([image], [start x point], [start y point], [color])
imagefill($newimg,0,0,$skyblue);
最後,在圖像建立後釋放圖像句柄和所占用的內存:
imagepng($newimg);
imagedestroy($newimg); ?>
這樣,創建圖像的全部代碼如下所示:
php教程代碼:
<? header ("content-type: image/png");
$newimg = imagecreate(250,250);
$skyblue = imagecolorallocate($newimg,136,193,255);
imagefill($newimg,0,0,$skyblue);
imagepng($newimg);
imagedestroy($newimg);
?>