You are here

function imagick_coloroverlay_defaults in Imagick 7

Returns the default settings of this effect.

1 call to imagick_coloroverlay_defaults()
imagick_coloroverlay_alpha_form in effects/imagick.coloroverlay.inc
Settings form for the imagick color overlay with alpha effect.
1 string reference to 'imagick_coloroverlay_defaults'
imagick_image_effect_info in ./imagick.module
Implements hook_image_effect_info()

File

effects/imagick.coloroverlay.inc, line 103

Code

function imagick_coloroverlay_defaults() {
  return array(
    'HEX' => '#FFFFFF',
    'alpha' => 50,
  );
}