$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);
// +++ completely random colours $randred = rand(1,255); $randgreen = rand(1,255); $randblue = rand(1,255); $color = ImageColorAllocate($myimage, $randred, $randgreen, $randblue); // --- completely random colours
Show Your Support