PHP Doku:: Rotates an image - function.imagick-rotateimage.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::rollImage

Imagick::roundCorners>>

Imagick::rotateImage

(PECL imagick 2.0.0)

Imagick::rotateImageRotates an image

Beschreibung

bool Imagick::rotateImage ( mixed $background , float $degrees )
Warnung

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

Rotates an image the specified number of degrees. Empty triangles left over from rotating the image are filled with the background color.

Parameter-Liste

background

The background color

degrees

The number of degrees to rotate the image

Rückgabewerte

Liefert TRUE bei Erfolg.

Changelog

Version Beschreibung
2.1.0 Now allows a string representing the color as the first parameter. Previous versions allow only an ImagickPixel object.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
wjsams at gmail dot com
23.11.2008 6:49
If you want to rotate an image by a certain degree you can do this:

<?php
header
('content-type: image/jpeg');
$imagick = new Imagick();
$imagick->readImage('castle.jpg');
$imagick->rotateImage(new ImagickPixel(), 90);
print
$imagick->getImage();
?>



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