You are here

function imagick_annotate_defaults in Imagick 7

Returns the default settings of this effect.

1 call to imagick_annotate_defaults()
imagick_annotate_form in effects/imagick.annotate.inc
Settings form for the imagick annotate effect.
1 string reference to 'imagick_annotate_defaults'
imagick_image_effect_info in ./imagick.module
Implements hook_image_effect_info()

File

effects/imagick.annotate.inc, line 173

Code

function imagick_annotate_defaults() {
  return array(
    'text_fieldset' => array(
      'text' => 'Annotation',
      'font' => 'Helvetica',
      'size' => 20,
      'HEX' => '#000000',
    ),
    'position_fieldset' => array(
      'anchor' => 'right-bottom',
      'padding_x' => 20,
      'padding_y' => 20,
    ),
  );
}