downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Imagick::transparentPaintImage> <Imagick::tintImage
[edit] Last updated: Fri, 23 Mar 2012

view this page in

Imagick::transformImage

(PECL imagick 2.0.0)

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

Opis

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

A convenience method for setting crop size and the image geometry from strings. Ta metoda jest dostępna, jeśli rozszerzenie Imagick zostało skompilowane z ImageMagick w wersji 6.2.9 lub nowszej.

Parametry

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.

Zwracane wartości

Zwraca TRUE w przypadku sukcesu.

Przykłady

Przykład #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');
?>

Zobacz też:



add a note add a note User Contributed Notes Imagick::transformImage
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites