You are here

function image_gd_interlace in ImageCache Actions 8

Same name and namespace in other branches
  1. 7 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 1230

Code

function image_gd_interlace($image) {
  imageinterlace($image->resource, 1);
  return TRUE;
}