header ("Content-type: image/png");
#$currimage = imagecreate (100, 100);
#$background_color = imagecolorallocate ($currimage, 255, 255, 255);
$xcorner = -1.5;
$y2corner = 1.5;
$x2corner = 1.5;
$ycorner = -1.5;
$max = rand(70,190);
$xsize = 400;#imagesx($currimage);# 200;#
$ysize = 400;#imagesy($currimage);# 200;#
$xgap = 0;
$ygap = 0;
$r = rand(0,255);
$g = rand(0,255);
$b = rand(0,255);
#$currimage = imagecreatefrompng("wallpaper_blank.png");
$currimage = imagecreatetruecolor($xsize, $ysize);
imagefill ($currimage, 1, 1, imagecolorallocate($currimage,...
Read More