grenier couleur de texte aléatoire pour le texte pour l'image php

$im     =  imagecreatetruecolor(800,400);
function color_generator($im){
  $color = imagecolorallocate($im,rand(0,500),rand(0,500),rand(0,500));
  return $color;
}
$color = color_generator($im);
mindquaker