Imagick::transformImage

(PECL imagick 2.0.0)

Imagick::transformImageConvenience method for setting crop size and the image geometry

Описание

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

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.

Возвращаемые значения

В случае успешной работы возвращает TRUE.

Примеры

Пример #1 Using Imagick::transformImage():

The example creates a 100x100 black image.

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

Смотрите также


Участник рейтинга Тэглайн 2010