Exemple #1
0
 /**
  * Converts an hsv color (array(h,s,v) to it's hex equivalent
  * @param array $hsv
  * @returns string The hex color
  */
 public static function hsv2hex($hsv)
 {
     $rgb = ColorUtils::hsv2rgb($hsv);
     return ColorUtils::rgb2hex($rgb);
 }