Hinweis:
DAT PROGRAMM DA FUNZT NET, und zwar sowas von gar nicht...
Liegt bestimmt am Algorithmus:
$celebs = array("Oliver Stone", "Johnny Depp", "Mao Tse Tung", ...);
$pixelSum = array_sum($imagepixels); // get random number from uploaded image
srand($pixelSum);
$percent = 65+rand(0,30); // start with 65-95%
for($i=0;$i<8;$i++) {
$celeb_name = $celebs[array_rand($celebs)];
echo sprintf("%.02f",$percent)." - ".$celeb_name."<br/>";
$percent = ($percent*rand(65,100))/100; // decrease percent a bit
}