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

doc::lua-oocairo-fontface(3)				       Lua OO Cairo binding				      doc::lua-oocairo-fontface(3)

Name
       lua-oocairo-fontface - Unscaled font face object

Introduction
       Cairo font face objects are returned by the "get_font_face" method on context objects (see lua-oocairo-context(3)).  They represent a font
       selection, but not including the scaling used to create a font of a particular size.  See lua-oocairo-scaledfont(3) for details about fonts
       at a particular size, which can be created by scaling one of these font face objects.

       Font face objects can be compared with the "==" operator.  This will compare the identity of the objects, so different Lua objects which
       refer to the same "cairo_font_face_t" will compare as equal.

Methods
       Font face objects provide the following methods.  Some of these will not be defined if the module was compiled against a version of Cairo
       too old to support them.

       fontface:get_family ()
	   Returns a string containing the name of the family selected with the "select_font_face" method.  Throws an exception if called on a
	   font face which wasn't created with the aXXtoyaXX API.  Only available with Cairo 1.8 or better.

       fontface:get_slant ()
	   Returns the slant style of the font face created with the toy API, or throws an exception for other font faces.  The return value will
	   be a string, with one of the values accepted by the "select_font_face" method.  Only available with Cairo 1.8 or better.

       fontface:get_type ()
	   Returns a string indicating what backend library handles this font.	The return value will be one of the following:

	   toy Created using Cairo's aXXtoyaXX font API, probably selected with the "select_font_face" method.

	   ft  Created with the FreeType API.

	   win32
	       A Windows native font.

	   quartz
	       A MacOS X native font.

	   user
	       A font created with custom code.

       fontface:get_weight ()
	   Returns the weight of the font face created with the toy API, or throws an exception for other font faces.  The return value will be a
	   string, with one of the values accepted by the "select_font_face" method.  Only available with Cairo 1.8 or better.

1.4								    2011-05-18					      doc::lua-oocairo-fontface(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