(PECL imagick 2.0.0)
Imagick::clone — Makes an exact copy of the Imagick object
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Makes an exact copy of the Imagick object.
Es wird kein Wert zurückgegeben.
For making thumbnails. Try this:
<?php
$im = new Imagick("image.jpg");
$im->thumbnailImage(100);
$im->writeImage("thumb_image.jpg");
?>
This is great to use to make thumbnails
<?php
$im = new Imagick("image.jpg");
$thumb = $im->clone();
$thumb->thumbnailImage(100);
$thumb->writeImage("thumb_image.jpg");
?>