You are here

function imagick_noise_defaults in Imagick 7

Returns the default settings of this effect.

1 call to imagick_noise_defaults()
imagick_noise_form in effects/imagick.noise.inc
Settings form for the imagick noise effect.
1 string reference to 'imagick_noise_defaults'
imagick_image_effect_info in ./imagick.module
Implements hook_image_effect_info()

File

effects/imagick.noise.inc, line 59

Code

function imagick_noise_defaults() {
  return array(
    'type' => imagick::NOISE_UNIFORM,
  );
}