<?php
header( ' Content-type: image/gif');
//创建画布
$res = imagec reatet ruecolor(500,500) ;
//配置颜色
$red = imageColorAllocate($res, 255, 0, 0);
$green= imageColorAllocate($res, 0, 255,0);
$blue = imageColorAllocate($res, 0, 0, 255);
$white = imageColorAllocate($res, 255, 255, 255);
//画布填充颜色
imageFill($res, 0, 0, $white);
//制作干扰点
for($i=0;$i<5000;$i++){
imagesetpixel($res, mt_ rand(0, 500), mt_ rand(0, 500), $red);
}
//制作干扰线
for($i=0;$i<5000;$i++){
imageline($res ,
mt_ rand(0, 500),
mt_ rand(0, 500) ,
mt_ rand(0,500) ,
mt_ rand(0,500),
$red
);
}
|