PHP Doku:: Creates a new CairoContext - cairocontext.construct.html

Verlauf / Chronik / History: (1) anzeigen

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

Ein Service von Reinhard Neidl - Webprogrammierung.

The CairoContext class

<<CairoContext::closePath -- cairo_close_path

CairoContext::copyPage -- cairo_copy_page>>

CairoContext::__construct

(PECL cairo >= 0.1.0)

CairoContext::__constructCreates a new CairoContext

Beschreibung

CairoContext::__construct ( CairoSurface $surface )

Creates a new CairoContext object to draw

Parameter-Liste

surface

A valid CairoSurface like CairoImageSurface or CairoPdfSurface

Rückgabewerte

A CairoContext

Beispiele

Beispiel #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);

?>

Siehe auch

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