function image_style_load

Loads an ImageStyle object.

Parameters

string $name: The ID of the ImageStyle object to load.

1 call to image_style_load()
2 string references to 'image_style_load'

File

drupal/core/modules/image/image.module, line 568
Exposes global functionality for creating image styles.

Code

function image_style_load($name) {
  return entity_load('image_style', $name);
}