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

search for in the

Imagick::coalesceImages> <Imagick::clipPathImage
Last updated: Sun, 25 Nov 2007

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

Description

Imagick Imagick::clone ( void )
Warning

Αυτή η συνάρτηση επί του παρόντος δεν είναι τεκμηριωμένη, μόνο ο κατάλογος των argument της είναι διαθέσιμος.

Warning

Αυτή η συνάρτηση είναι ΔΟΚΙΜΑΣΤΙΚΗ. Η συμπεριφορά της, το όνομα της και οτιδήποτε άλλο είναι τεκμηριωμένο σχετικά με αυτή την συνάρτηση μπορεί να αλλάξει χωρίς ειδοποίηση σε μελλοντικές εκδόσεις της PHP. Χρησιμοποιήστε αυτή την συνάρτηση με δικό σας ρίσκο.

Makes an exact copy of the Imagick object.

Parameters

Return Values

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
bryan
13-Aug-2008 11:58
For making thumbnails. Try this:

<?php

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

?>
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::coalesceImages> <Imagick::clipPathImage
Last updated: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites