Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cairo_font_options_create(3) [php man page]

CAIRO_FONT_OPTIONS_CREATE(3)						 1					      CAIRO_FONT_OPTIONS_CREATE(3)

cairo_font_options_create - Description

SYNOPSIS
CairoFontOptions cairo_font_options_create (void ) DESCRIPTION
The function description goes here. Warning This function is currently not documented; only its argument list is available. PARAMETERS
This function has no parameters. RETURN VALUES
What is returned on success and failure ERRORS
/EXCEPTIONS When does this function issue E_* level errors, and/or throw exceptions. EXAMPLES
Example #1 cairo_font_options_create(3) example Any text that describes the purpose of the example, or what goes on in the example should be here. <?php /* ... */ ?> The above example will output something similar to: SEE ALSO
related-function-name-here(3). PHP Documentation Group CAIRO_FONT_OPTIONS_CREATE(3)

Check Out this Related Man Page

CAIROFONTOPTIONS(3)							 1						       CAIROFONTOPTIONS(3)

The CairoFontOptions class

INTRODUCTION
An opaque structure holding all options that are used when rendering fonts. Individual features of a cairo_font_options_t can be set or accessed using functions named cairo_font_options_set_feature_name and cairo_font_options_get_feature_name, like cairo_font_options_set_antialias() and cairo_font_options_get_antialias(). New features may be added to CairoFontOptions in the future. For this reason CairoFontOptions::copy, CairoFontOptions::equal, CairoFontOp- tions::merge, CairoFontOptions::hash (cairo_font_options_copy(), cairo_font_options_equal(), cairo_font_options_merge(), and cairo_font_options_hash() in procedural way) should be used to copy, check for equality, merge, or compute a hash value of CairoFontOptions objects. CLASS SYNOPSIS
CairoFontOptions CairoFontOptions Methods o public CairoFontOptions::__construct (void ) o public bool CairoFontOptions::equal (string $other) o public int CairoFontOptions::getAntialias (void ) o public int CairoFontOptions::getHintMetrics (void ) o public int CairoFontOptions::getHintStyle (void ) o public int CairoFontOptions::getSubpixelOrder (void ) o public int CairoFontOptions::hash (void ) o public void CairoFontOptions::merge (string $other) o public void CairoFontOptions::setAntialias (string $antialias) o public void CairoFontOptions::setHintMetrics (string $hint_metrics) o public void CairoFontOptions::setHintStyle (string $hint_style) o public void CairoFontOptions::setSubpixelOrder (string $subpixel_order) o public int CairoFontOptions::status (void ) PHP Documentation Group CAIROFONTOPTIONS(3)
Man Page