PHP Doku:: Append a set of images - function.imagick-appendimages.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungImage Processing (ImageMagick)The Imagick classImagick::appendImages

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::annotateImage

Imagick::averageImages>>

Imagick::appendImages

(PECL imagick 2.0.0)

Imagick::appendImagesAppend a set of images

Beschreibung

Imagick Imagick::appendImages ( bool $stack )

Append a set of images into one larger image.

Parameter-Liste

stack

The direction of the stack (top to bottom or bottom to top)

Rückgabewerte

Returns Imagick instance on success. Wirf eine ImagickException bei einem Fehler.

Beispiele

Beispiel #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;
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Output of example : Imagick::appendImages()


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Brandon
12.11.2009 9:56
# How to combine a multi-page pdf file into a single long image:

<?php
$im1
= new Imagick();  
$im1->readImage('multi-page-pdf.pdf');
$im1->resetIterator();
# Combine multiple images into one, stacked vertically.
$ima = $im1->appendImages(true);
$ima->setImageFormat("png");
header("Content-Type: image/png");
echo
$ima;
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)