Imagick::affineTransformImage

(PECL imagick 2.0.0)

Imagick::affineTransformImageTransforms an image

說明

bool Imagick::affineTransformImage ( ImagickDraw $matrix )

Transforms an image as dictated by the affine matrix.

參數

matrix

The affine matrix

回傳值

成功時回傳 TRUE

add a note add a note

User Contributed Notes 2 notes

up
2
peter dot e dot lind at gmail dot com
9 years ago
This method has not been properly implemented it seems - it has no effect whatsoever on the image.
up
1
SkepticaLee
4 years ago
This function is obsolete. Use distortImage() instead, with the affine transformation constant, and an array of six values, sx, rx, ry, sy, tx, ty.
To Top