You are here

function image_imagemagick_interlace in ImageCache Actions 7

Same name and namespace in other branches
  1. 8 canvasactions/canvasactions.inc \image_imagemagick_interlace()

Imagemagick toolkit specific implementation of the image interlace effect.

Parameters

stdClass $image: Image object containing the 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 1252

Code

function image_imagemagick_interlace($image) {
  $image->ops[] = '-interlace Plane';
  return TRUE;
}