Imagick::transformImage

(PECL imagick 2, PECL imagick 3)

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

Aviso

Esta função tornou-se DEFASADA a partir da Imagick 3.4.4. O uso desta função é fortemente desencorajado.

Descrição

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

A convenience method for setting crop size and the image geometry from strings. Este método estará disponível se a extensão Imagick tiver sido compilada com a ImageMagick versão 6.2.9 ou superior.

Parâmetros

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.

Valor Retornado

Returns an Imagick object containing the transformed image.

Exemplos

Exemplo #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');
?>

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top