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

search for in the

Imagick::clutImage> <Imagick::clipPathImage
Last updated: Fri, 09 May 2008

view this page in

Imagick::clone

(No version information available, might be only in CVS)

Imagick::clone — Makes an exact copy of the Imagick object

Описание

Imagick Imagick::clone ( void )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Makes an exact copy of the Imagick object.

Возвращаемые значения

What the function returns, first on success, then on failure. See also the &return.success; entity



add a note add a note User Contributed Notes
Imagick::clone
waage
30-Jan-2008 03: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, 09 May 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites