function image_gd_interlace in ImageCache Actions 7
Same name and namespace in other branches
- 8 canvasactions/canvasactions.inc \image_gd_interlace()
GD toolkit specific implementation of the image interlace effect.
Parameters
stdClass $image: Image object containing the GD image resource to operate on. param array $data The current configuration for this image effect.
Return value
bool true on success, false otherwise.
File
- canvasactions/
canvasactions.inc, line 1236
Code
function image_gd_interlace($image) {
imageinterlace($image->resource, 1);
return TRUE;
}