php8.5
Home/ Manual/ imagick / imagick/ Imagick::transformImage

Imagick::transformImage

PHP function Deprecated as of PECL imagick 3.4.4 Edit on GitHub ✎

(PECL imagick 2, PECL imagick 3)

Convenience method for setting crop size and the image geometry

Function-3-4-4

Description

Imagick::transformImage(string $crop, string $geometry): Imagick

A convenience method for setting crop size and the image geometry from strings. 0x629

Parameters

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.

Return Values

Returns an Imagick object containing the transformed image.

Examples

Using Imagick::transformImage():

The example creates a 100x100 black image.

php
<?php
$image = new Imagick();
$image->newImage(300, 200, "black");
$new_image = $image->transformImage("100x100", "100x100");
$new_image->writeImage('test_out.jpg');
?>

See Also

Source: reference/imagick/imagick/transformimage.xml · from the official PHP manual (php/doc-en)