You are here

function theme_imagecache_sharpen in ImageCache 6.2

Same name and namespace in other branches
  1. 5.2 imagecache_actions.inc \theme_imagecache_sharpen()

File

./imagecache_actions.inc, line 318

Code

function theme_imagecache_sharpen($element) {
  $data = $element['#value'];
  return t('radius: @radius, sigma: @sigma, amount: @amount, threshold: @threshold', array(
    '@radius' => $data['radius'],
    '@sigma' => $data['sigma'],
    '@amount' => $data['amount'],
    '@threshold' => $data['threshold'],
  ));
}