Php Imageaffine
# PHP imageaffine - Returns an image after affine transformation
[PHP Image Processing](#)
imageaffine β Returns an image after affine transformation, with optional clipping.
### Syntax
resource imageaffine ( resource $image , array $affine [, array $clip ] )
### Parameters
* **image** An image resource returned by an image creation function (e.g., imagecreatetruecolor()).
* **affine** An array with keys from 0 to 5.
* **clip** An array with keys "x", "y", "width", and "height".
### Return Value
Returns the transformed image on success, or FALSE on failure.
[PHP Image Processing](#)
YouTip