(PECL imagick 2, PECL imagick 3)
Imagick::transformImage — Convenience method for setting crop size and the image geometry
此函數(shù)在 Imagick 3.4.4 中被 廢棄,強烈建議不要應(yīng)用此函數(shù)。
A convenience method for setting crop size and the image geometry from strings. 此方法在Imagick基于ImageMagick 6.2.9以上版本編譯時可用。
crop
A crop geometry string. This geometry defines a subregion of the image to crop.
geometry
An image geometry string. This geometry defines the final size of the image.
Returns an Imagick object containing the transformed image.
示例 #1 Using Imagick::transformImage():
The example creates a 100x100 black image.
<?php
$image = new Imagick();
$image->newImage(300, 200, "black");
$new_image = $image->transformImage("100x100", "100x100");
$new_image->writeImage('test_out.jpg');
?>