Imagick::appendImages
(PECL imagick 2.0.0)
Imagick::appendImages — Append a set of images
Descrição
Append a set of images into one larger image.
Parâmetros
-
stack -
Whether to stack the images vertically. By default (or if
FALSEis specified) images are stacked left-to-right. IfstackisTRUE, images are stacked top-to-bottom.
Valor Retornado
Returns Imagick instance on success.
Erros
Throws ImagickException on error.
Exemplos
Example #1 Imagick::appendImages() example
<?php
/* Create new imagick object */
$im = new Imagick();
/* create red, green and blue images */
$im->newImage(100, 50, "red");
$im->newImage(100, 50, "green");
$im->newImage(100, 50, "blue");
/* Append the images into one */
$im->resetIterator();
$combined = $im->appendImages(true);
/* Output the image */
$combined->setImageFormat("png");
header("Content-Type: image/png");
echo $combined;
?>
O exemplo acima irá imprimir algo similar à: