sabret00the
04-27-2005, 10:00 PM
Open "wall.php" and find:
$randcolor = rand(1,9);
if ( $randcolor == 1 ) $color = ImageColorAllocate($myimage, 255, 255, 0);
elseif ( $randcolor == 2 ) $color = ImageColorAllocate($myimage, 255, 165, 0);
elseif ( $randcolor == 3 ) $color = ImageColorAllocate($myimage, 255, 20, 147);
elseif ( $randcolor == 4 ) $color = ImageColorAllocate($myimage, 255, 0, 0);
elseif ( $randcolor == 5 ) $color = ImageColorAllocate($myimage, 255, 255, 255);
elseif ( $randcolor == 6 ) $color = ImageColorAllocate($myimage, 0, 255, 255);
elseif ( $randcolor == 7 ) $color = ImageColorAllocate($myimage, 255, 0, 255);
else $color = ImageColorAllocate($myimage, 0, 255, 0);
and replace with
// +++ completely random colours
$randred = rand(1,255);
$randgreen = rand(1,255);
$randblue = rand(1,255);
$color = ImageColorAllocate($myimage, $randred, $randgreen, $randblue);
// --- completely random colours
now save and upload and you're done :)
$randcolor = rand(1,9);
if ( $randcolor == 1 ) $color = ImageColorAllocate($myimage, 255, 255, 0);
elseif ( $randcolor == 2 ) $color = ImageColorAllocate($myimage, 255, 165, 0);
elseif ( $randcolor == 3 ) $color = ImageColorAllocate($myimage, 255, 20, 147);
elseif ( $randcolor == 4 ) $color = ImageColorAllocate($myimage, 255, 0, 0);
elseif ( $randcolor == 5 ) $color = ImageColorAllocate($myimage, 255, 255, 255);
elseif ( $randcolor == 6 ) $color = ImageColorAllocate($myimage, 0, 255, 255);
elseif ( $randcolor == 7 ) $color = ImageColorAllocate($myimage, 255, 0, 255);
else $color = ImageColorAllocate($myimage, 0, 255, 0);
and replace with
// +++ completely random colours
$randred = rand(1,255);
$randgreen = rand(1,255);
$randblue = rand(1,255);
$color = ImageColorAllocate($myimage, $randred, $randgreen, $randblue);
// --- completely random colours
now save and upload and you're done :)