CairoContext
在线手册:中文 英文
PHP手册

CairoContext::setFontFace

cairo_set_font_face

(PECL cairo >= 0.1.0)

CairoContext::setFontFace -- cairo_set_font_faceThe setFontFace purpose

说明

面向对象风格 (method):

public void CairoContext::setFontFace ( CairoFontFace $fontface )

过程化风格:

void cairo_set_font_face ( CairoContext $context , CairoFontFace $fontface )

Sets the font-face for a given context.

参数

context

A CairoContext object to change the font-face for.

fontface

A CairoFontFace object

返回值

No value is returned

范例

Example #1 面向对象风格

<?php
// New surface with white background
$s = new CairoImageSurface(CairoFormat::ARGB32300100);
$c = new CairoContext($s);
$c->setSourceRgb(111);
$c->paint();

// Draw some text
$c->setSourceRgb(000);
$c->moveTo(1060);
// Create a new font face
$f = new CairoToyFontFace("sans-serif"CairoFontSlant::NORMALCairoFontWeight::NORMAL);
$c->setFontFace($f);
$c->setFontSize(30);
$c->showText('Hello, World!');
$s->writeToPng(dirname(__FILE__) . '/setFontFace.png');
?>

Example #2 过程化风格

<?php
/* ... */
?>

参见


CairoContext
在线手册:中文 英文
PHP手册