Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cairo_font_face_status(3) [php man page]

CAIRO_FONT_FACE_STATUS(3)						 1						 CAIRO_FONT_FACE_STATUS(3)

CairoFontFace::status - Check for CairoFontFace errors

       Object oriented style (method):

SYNOPSIS
public int CairoFontFace::status (void ) DESCRIPTION
Procedural style: int cairo_font_face_status (CairoFontFace $fontface) Checks whether an error has previously occurred for this font face PARAMETERS
o $fontface - A valid CairoFontFace object RETURN VALUES
CAIRO_STATUS_SUCCESS or another error such as CAIRO_STATUS_NO_MEMORY. EXAMPLES
Example #1 Object oriented style <?php // Creates the font face $fontface = new CairoToyFontFace('sans-serif'); // Get the font face status var_dump($fontface->status()); // should be the value of CAIRO_STATUS_SUCCESS ?> The above example will output something similar to: int(0) Example #2 Procedural style <?php // Creates the font face $fontface = new CairoToyFontFace('sans-serif'); // Get the font face status var_dump(cairo_font_face_status($fontface)); // should be the value of CAIRO_STATUS_SUCCESS ?> The above example will output something similar to: int(0) SEE ALSO
Classname::Method. PHP Documentation Group CAIRO_FONT_FACE_STATUS(3)

Check Out this Related Man Page

CAIROFONTTYPE(3)							 1							  CAIROFONTTYPE(3)

The CairoFontType class

INTRODUCTION
CairoFontType class is an abstract final class that contains constants used to describe the type of a given CairoFontFace or CairoScaled- Font. The font types are also known as "font backends" within cairo. The type of a CairoFontFace is determined by the how it is created, an example would be the CairoToyFontFace::__construct. The CairoFont- Face type can be queried with CairoFontFace::getType or cairo_font_face_get_type(3) The various CairoFontFace functions can be used with a font face of any type. The type of a CairoScaledFont is determined by the type of the CairoFontFace passed to CairoScaledFont::__construct or cairo_scaled_font_create(3). The scaled font type can be queried with CairoScaledFont::getType or cairo_scaled_font_get_type(3). CLASS SYNOPSIS
CairoFontType CairoFontType Constants o const integer$CairoFontType::TOY0 o const integer$CairoFontType::FT1 o const integer$CairoFontType::WIN322 o const integer$CairoFontType::QUARTZ3 PREDEFINED CONSTANTS
o CairoFontType::TOY -The font was created using CairoToyFont api o CairoFontType::FT -The font is of type CairoFreeType o CairoFontType::WIN32 -The font is of type Win32 o CairoFontType::QUARTZ -The font is of type Quartz o CairoFontType::USER -The font was create using cairo's user font api PHP Documentation Group CAIROFONTTYPE(3)
Man Page

2 More Discussions You Might Find Interesting

1. AIX

Dashboard style tool(s)?

I was wondering if anyone knows of any dashboard style tools for AIX. One of my many responsibilities is to report the status of the boxes and whether certain things are "up" and running each and every day. Nonetheless, this is a MAJOR pain as I have to logon to each box, pull up URLs through my... (3 Replies)
Discussion started by: dsimpg1
3 Replies

2. UNIX for Dummies Questions & Answers

substr of a file

.wysiwyg { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BACKGROUND: #f5f5ff; PADDING-BOTTOM: 0px; MARGIN: 5px 10px 10px; FONT: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; COLOR: #000000; PADDING-TOP: 0px } .wysiwyg A:link { COLOR: #22229c } .wysiwyg_alink { COLOR:... (1 Reply)
Discussion started by: davyp74
1 Replies