PHP Doku:: The moveTo purpose - cairocontext.moveto.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungCairoThe CairoContext classCairoContext::moveTo -- cairo_move_to

Ein Service von Reinhard Neidl - Webprogrammierung.

The CairoContext class

<<CairoContext::maskSurface -- cairo_mask_surface

CairoContext::newPath -- cairo_new_path>>

CairoContext::moveTo

cairo_move_to

(PECL cairo >= 0.1.0)

CairoContext::moveTo -- cairo_move_toThe moveTo purpose

Beschreibung

Object oriented style (method):

public void CairoContext::moveTo ( string $x , string $y )

Procedural style:

void cairo_move_to ( CairoContext $context , string $x , string $y )

Begin a new sub-path. After this call the current point will be (x, y).

Parameter-Liste

context

A valid CairoContext object.

x

The x coordinate of the new position.

y

The y coordinate of the new position

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Object oriented style

<?php

$s 
= new CairoImageSurface(CairoFormat::ARGB32100100);
$c = new CairoContext($s);

$c->setSourceRgb(000);
$c->paint();

// Move 10 pixels across, and 10 pixels down
$c->moveTo(1010);
$c->lineTo(9090);
$c->setLineWidth(2);
$c->setSourceRgb(111);
$c->stroke();

// Move 90 pixels across, and 10 pixels down
$c->moveTo(9010);
$c->lineTo(1090);
$c->setLineWidth(2);
$c->setSourceRgb(111);
$c->stroke();

$s->writeToPng(dirname(__FILE__) . '/CairoContext_moveTo.png');
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

...

Beispiel #2 Procedural style

<?php

$s 
cairo_image_surface_create(CAIRO_SURFACE_TYPE_IMAGE100100);
$c cairo_create($s);

cairo_set_source_rgb($c000);
cairo_paint($c);

// Move 10 pixels across, and 10 pixels down
cairo_move_to($c1010);
cairo_line_to($c9090);
cairo_set_line_width($c2);
cairo_set_source_rgb($c111);
cairo_stroke($c);

// Move 90 pixels across, and 10 pixels down
cairo_move_to($c9010);
cairo_line_to($c1090);
cairo_set_line_width($c2);
cairo_set_source_rgb($c111);
cairo_stroke($c);

cairo_surface_write_to_png($sdirname(__FILE__) . '/cairo_move_to.png');
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

...

Siehe auch

  • Classname::Method()


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