PHP Doku:: Removes a region of an image and trims - function.imagick-chopimage.html

Verlauf / Chronik / History: (9) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::charcoalImage

Imagick::clear>>

Imagick::chopImage

(PECL imagick 2.0.0)

Imagick::chopImageRemoves a region of an image and trims

Beschreibung

bool Imagick::chopImage ( int $width , int $height , int $x , int $y )
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Removes a region of an image and collapses the image to occupy the removed portion.

Parameter-Liste

width

Width of the chopped area

height

Height of the chopped area

x

X origo of the chopped area

y

Y origo of the chopped area

Rückgabewerte

Liefert TRUE bei Erfolg.

Fehler/Exceptions

Wirft ImagickException bei Fehlern.

Beispiele

Beispiel #1 Using Imagick::chopImage():

Example of using Imagick::chopImage

<?php
/* Create some objects */
$image = new Imagick();
$pixel = new ImagickPixel'gray' );

/* New image */
$image->newImage(400200$pixel);

/* Chop image */
$image->chopImage(20020000);

/* Give image a format */
$image->setImageFormat('png');

/* Output the image with headers */
header('Content-type: image/png');
echo 
$image;

?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



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",...)