downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Imagick::clutImage> <Imagick::clipPathImage
Last updated: Fri, 30 Oct 2009

view this page in

Imagick::clone

(PECL imagick 2.0.0)

Imagick::cloneMakes an exact copy of the Imagick object

Beschreibung

Imagick Imagick::clone ( void )
Warnung

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.

Rückgabewerte

Es wird kein Wert zurückgegeben.



add a note add a note User Contributed Notes
Imagick::clone
bryan
13-Aug-2008 08:58
For making thumbnails. Try this:

<?php

$im
= new Imagick("image.jpg");
$im->thumbnailImage(100);
$im->writeImage("thumb_image.jpg");

?>
waage
30-Jan-2008 12:00
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");

?>

Imagick::clutImage> <Imagick::clipPathImage
Last updated: Fri, 30 Oct 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites