You are here

function textimage_image_styles_alter in Textimage 7.3

Implements hook_image_styles_alter().

File

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

Code

function textimage_image_styles_alter(&$styles) {

  // Adds textimage properties to the image styles when loading them.
  foreach ($styles as &$style) {
    TextimageStyles::isTextimage($style);
  }
}