CairoContext::moveTo

cairo_move_to

(PECL cairo >= 0.1.0)

CairoContext::moveTo -- cairo_move_toThe moveTo purpose

说锟斤拷

锟斤拷锟斤拷锟斤拷锟斤拷锟� (method):

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

锟斤拷锟教伙拷锟斤拷锟�:

cairo_move_to ( CairoContext $context , float $x , float $y ) : void

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

锟斤拷锟斤拷

context

A valid CairoContext object.

x

The x coordinate of the new position.

y

The y coordinate of the new position

锟斤拷锟斤拷值

没锟叫凤拷锟斤拷值锟斤拷

锟斤拷锟斤拷

Example #1 锟斤拷锟斤拷锟斤拷锟斤拷锟�

<?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');
?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

...

Example #2 锟斤拷锟教伙拷锟斤拷锟�

<?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');
?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

...

锟轿硷拷

  • Classname::Method()