(PECL imagick 2.0.0)
Imagick::flattenImages — Merges a sequence of images
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Merges a sequence of images. This is useful for combining Photoshop layers into a single image.
Liefert TRUE bei Erfolg.
Wirft ImagickException bei Fehlern.
Note that the function returns an Imagick object and does not modify the existing object. Below is my code for converting a PNG with transparency into a JPG with a background color. This code illustrates the difference.
<?php
$im = new Imagick('image.png');
$im->setImageBackgroundColor('white');
$im->flattenImages(); // This does not do anything.
$im = $im->flattenImages(); // Use this instead.
$im->setImageFormat('jpg');
$im->writeImage('image.jpg');
?>