update : 2015.11.03
php.shukuma.com

검색:
 
 
Append a set of images

Imagick::appendImages

(PECL imagick 2.0.0)

Imagick::appendImagesAppend a set of images

설명

Imagick Imagick::appendImages ( bool $stack = false )

Append a set of images into one larger image.

인수

stack

Whether to stack the images vertically. By default (or if FALSE is specified) images are stacked left-to-right. If stack is TRUE, images are stacked top-to-bottom.

반환값

Returns Imagick instance on success.

오류/예외

오류시에 ImagickException이 발생합니다.

예제

Example #1 Imagick::appendImages() example

<?php

/* Create new imagick object */
$im = new Imagick();

/* create red, green and blue images */
$im->newImage(10050"red");
$im->newImage(10050"green");
$im->newImage(10050"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;
?>

위 예제의 출력 예시:

Output of example : Imagick::appendImages()