You are here

function theme_textimage_direct_image in Textimage 7.3

Theme function to get a Textimage from a programmatical image style.

1 theme call to theme_textimage_direct_image()
_textimage_text_effect_preview_image in effects/textimage_text.inc
Deliver a preview of the textimage with the current settings.

File

./textimage.module, line 822
Textimage - Provides text to image manipulations.

Code

function theme_textimage_direct_image($variables) {
  return theme('textimage_formatter', array(
    'effects' => $variables['effects'],
    'text' => $variables['text'],
    'format' => $variables['format'],
    'caching' => $variables['caching'],
    'alt' => $variables['alt'] ? $variables['alt'] : implode(' - ', $variables['text']),
    'title' => $variables['title'],
    'attributes' => $variables['attributes'],
  ));
}