CairoContext::__construct

(PECL cairo >= 0.1.0)

CairoContext::__constructCreates a new CairoContext

Opis

public CairoContext::__construct ( CairoSurface $surface )

Creates a new CairoContext object to draw

Parametry

surface

A valid CairoSurface like CairoImageSurface or CairoPdfSurface

Zwracane wartości

A CairoContext

Przykłady

Przykład #1 CairoContext::__construct() example

<?php
// The surface to work on
$surface = new CairoImageSurface(CairoFormat::ARGB325050);

// Create a new CairoContext for the CairoSurface
$context = new CairoContext($surface);

?>

Zobacz też:

  • Cairo::Method()

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top