PHP Doku:: The newPath purpose - cairocontext.newpath.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungCairoThe CairoContext classCairoContext::newPath -- cairo_new_path

Ein Service von Reinhard Neidl - Webprogrammierung.

The CairoContext class

<<CairoContext::moveTo -- cairo_move_to

CairoContext::newSubPath -- cairo_new_sub_path>>

CairoContext::newPath

cairo_new_path

(PECL cairo >= 0.1.0)

CairoContext::newPath -- cairo_new_pathThe newPath purpose

Beschreibung

Object oriented style (method):

public void CairoContext::newPath ( void )

Procedural style:

void cairo_new_path ( CairoContext $context )

Clears the current path. After this call there will be no path and no current point.

Parameter-Liste

context

A valid CairoContext object.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Object oriented style

<?php
// [...]
CairoContext::newPath();
?>

Beispiel #2 Procedural style

<?php
// [...]
cairo_new_path($context);
?>

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