/**
  * Converts a rgb color value to hex
  * 
  * @param array $color
  * @return string
  */
 public function rgb2hex($color)
 {
     return ImagerService::rgb2hex($color);
 }