/** * hsv2rgb * Converts a HSV (Hue, Saturation, Brightness) value to RGB. * * @access public * @param integer $h Hue * @param integer $s Saturation * @param integer $v Brightness * @return string The RGB value. * @author Jason Lotito <*****@*****.**> */ function hsv2rgb($h, $s, $v) { return Image_Color::hex2rgb(Image_Color::hsv2hex($h, $s, $v)); }