function canvasactions_interlace_effect in ImageCache Actions 8
Same name and namespace in other branches
- 7 canvasactions/canvasactions.inc \canvasactions_interlace_effect()
Image effect callback for the Interlace / Progressive effect.
Parameters
stdClass $image:
array $data:
Return value
bool true on success, false otherwise.
1 string reference to 'canvasactions_interlace_effect'
- imagecache_canvasactions_image_effect_info in canvasactions/
imagecache_canvasactions.module - Implements hook_image_effect_info().
File
- canvasactions/
canvasactions.inc, line 1215
Code
function canvasactions_interlace_effect(stdClass $image, array $data) {
return image_toolkit_invoke('interlace', $image, array(
$data,
));
}