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