PHP Doku:: Draws a bezier curve - function.imagickdraw-bezier.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungImage Processing (ImageMagick)The ImagickDraw classImagickDraw::bezier

Ein Service von Reinhard Neidl - Webprogrammierung.

The ImagickDraw class

<<ImagickDraw::arc

ImagickDraw::circle>>

ImagickDraw::bezier

(PECL imagick 2.0.0)

ImagickDraw::bezierDraws a bezier curve

Beschreibung

bool ImagickDraw::bezier ( array $coordinates )
Warnung

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

Draws a bezier curve through a set of points on the image.

Parameter-Liste

coordinates

Multidimensional array like array( array( 'x' => 1, 'y' => 2 ), array( 'x' => 3, 'y' => 4 ) )

Rückgabewerte

Es wird kein Wert zurückgegeben.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
zombiebovine at gmail dot com
14.09.2009 12:43
How to use:

<?php
    $width
200;
   
$height = 200;
   
$border = 2;
   
   
$img = new Imagick();
   
$img->newImage( $width, $height, new ImagickPixel( 'transparent' ) );
   
   
$draw = new ImagickDraw();
   
$draw->setStrokeColor( new ImagickPixel( 'black' ) );
   
$draw->setStrokeWidth( 2 );
   
$draw->setFillColor( new ImagickPixel( 'transparent' ) );

   
// will fail in an obscure manner if the input data is invalid
   
$points = array
    (
        array(
'x' => 0, 'y' => 200 ),
        array(
'x' => 0, 'y' => 0 ),
        array(
'x' => 200, 'y' => 200 ),
        array(
'x' => 200, 'y' => 0 )
    );
   
   
$draw->bezier($points);
           
   
$img->drawImage( $draw );
   
$img->setImageFormat( "png" );
   
   
header( "Content-Type: image/png" );
    echo
$img;
?>



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