1. 程式人生 > >PHP畫簡單的圖形步驟

PHP畫簡單的圖形步驟

<?php
//1.建立一個畫布
$image = imagecreatetruecolor(500, 300);
//2.分配顏色,並填充畫布
//分配一個綠色,作為畫布的顏色
$green = imagecolorallocate($image,22, 153, 0);
//分配一個白色,作為畫筆的顏色
$white = imagecolorallocate($image, 255, 255,255);
//使用綠色填充畫布
imagefill($image, 0, 0, $green);
//3.在畫布中用白色繪製圖像
/*
 * 用imageellipse方法畫一個(橢)圓
 * 引數:畫布,圓心座標,圓半徑,使用的顏色
 */
imageellipse($image, 150,150, 150, 150, $white);

//3.在瀏覽器輸出影象資源
header("Content-type:image/jpeg");
imagejpeg($image);
//4.銷燬影象資源
imagedestroy($image);