138a139,143
> function imageapi_imagemagick_image_colorize(&$image, $red, $blue, $green, $alpha) {
>   $image->ops[] = '-alpha '.escapeshellarg($alpha).' -colorize '.(int) $red .','. (int) $blue.','.(int) $green;
>   return TRUE;
> }
> 
