PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

printer_select_pen> <printer_select_brush
Last updated: Fri, 22 Aug 2008

view this page in

printer_select_font

(No version information available, might be only in CVS)

printer_select_fontSelect a font

Descripción

void printer_select_font ( resource $printer_handle , resource $font_handle )

The function selects a font to draw text.

Lista de parámetros

printer_handle

printer_handle must be a valid printer handle.

font_handle

font_handle must be a valid font handle.

Valores retornados

No value is returned.

Ejemplos

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
There are no user contributed notes for this page.

printer_select_pen> <printer_select_brush
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites