You are here

function imageapi_image_rotate in ImageAPI 5

Same name and namespace in other branches
  1. 6 imageapi.module \imageapi_image_rotate()

Rotate an image by the given number of degrees.

Parameters

$image: An image object returned by imageapi_image_open().

$degrees: The number of (clockwise) degrees to rotate the image.

$background: An hexadecimal integer specifying the background color to use for the uncovered area of the image after the rotation. E.g. 0x000000 for black, 0xff00ff for magenta, and 0xffffff for white. For images that support transparency, this will default to transparent. Otherwise it will be white.

Return value

TRUE or FALSE, based on success.

File

./imageapi.module, line 278
An ImageAPI supporting mulitple image toolkits. Image toolkits are implemented as modules. Images are objects, but have no methods

Code

function imageapi_image_rotate(&$image, $degrees, $background = NULL) {
  return imageapi_toolkit_invoke('rotate', $image, array(
    $degrees,
    $background,
  ));
}