PHP Velho Oeste 2024

CairoContext::setFontFace

cairo_set_font_face

(PECL cairo >= 0.1.0)

CairoContext::setFontFace -- cairo_set_font_faceThe setFontFace purpose

Açıklama

Nesne yönelimli kullanım (method):

public CairoContext::setFontFace ( CairoFontFace $fontface ) : void

Yordamsal kullanım:

cairo_set_font_face ( CairoContext $context , CairoFontFace $fontface ) : void

Sets the font-face for a given context.

Değiştirgeler

context

A CairoContext object to change the font-face for.

fontface

A CairoFontFace object

Dönen Değerler

No value is returned

Örnekler

Örnek 1 Nesne yönelimli kullanım

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

Örnek 2 Yordamsal kullanım

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

Ayrıca Bakınız

add a note add a note

User Contributed Notes

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