dismiss Step into the future! Click here to switch to the beta php.net site
downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

printer_select_pen> <printer_select_brush
[edit] Last updated: Fri, 28 Jun 2013

view this page in

printer_select_font

(PECL printer SVN)

printer_select_fontSelect a font

Description

void printer_select_font ( resource $printer_handle , resource $font_handle )

The function selects a font to draw text.

Parameters

printer_handle

printer_handle must be a valid printer handle.

font_handle

font_handle must be a valid font handle.

Return Values

No value is returned.

Examples

Example #1 printer_select_font() example

<?php
$handle 
printer_open();
printer_start_doc($handle"My Document");
printer_start_page($handle);

$font printer_create_font("Arial"14876PRINTER_FW_MEDIUMfalsefalsefalse, -50);
printer_select_font($handle$font);
printer_draw_text($handle"PHP is simply cool"4040);
printer_delete_font($font);

printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>



add a note add a note User Contributed Notes printer_select_font - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites