PHP Doku:: Makes an exact copy of the Imagick object - function.imagick-clone.html

Verlauf / Chronik / History: (4) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungImage Processing (ImageMagick)The Imagick classImagick::clone

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::clipPathImage

Imagick::clutImage>>

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.


2 BenutzerBeiträge:
- Beiträge aktualisieren...
bryan
13.08.2008 20:58
For making thumbnails. Try this:

<?php

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

?>
waage
30.01.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");

?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)