cpdf_curveto (PHP 3>= 3.0.8, PHP 4 ) cpdf_curveto -- Zeichnet eine Kurve Beschreibungbool cpdf_curveto ( int PDF-Dokument, float x1, float y1, float x2, float y2, float x3, float y3 [, int Modus])
Die Funktion cpdf_curveto() zeichnet eine
Bezier-Kurve vom aktuellen Punkt zum Punkt
(x3, y3), wobei
(x1, y1) und
(x2, y2) als
Kontrollpunkte verwendet werden. Gibt bei Erfolg TRUE zurück, im Fehlerfall FALSE.
The optional parameter mode determines the unit length. If it is 0 or omitted the default unit as specified for the page is used. Otherwise the coordinates are measured in postscript points disregarding the current unit.
Siehe auch: cpdf_moveto(),
cpdf_rmoveto(),
cpdf_rlineto() und
cpdf_lineto().
|