printer_draw_text

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

printer_draw_text — Draw text

Описание

void printer_draw_text ( resource $printer_handle , string $text , int $x , int $y )

The function draws text at position x , y using the selected font.

Список параметров

printer_handle

printer_handle must be a valid handle to a printer.

text

The text to be written.

x

x is the x coordinate of the position.

y

y is the y coordinate of the position.

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Примеры

Пример #1 printer_draw_text() example

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

$font printer_create_font("Arial"7248400falsefalsefalse0);
printer_select_font($handle$font);
printer_draw_text($handle"test"1010);
printer_delete_font($font);

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

Коментарии

I've a problem with the right alignment for number with draw_text so I make a small function and it is work for me, hopefully it will help other.

function write_num($input,$printer,$ypos,$xpos){
    $s=strlen($input);
    $y=$xpos;
    for ($i=1;$i<$s+1;$i++){
        $u=$i*-1;
        printer_draw_text($printer,substr($input,$u,1),$y,$ypos);
        $y=$y-15;
    }
}

Firman, Indonesia
2003-10-14 09:20:45
http://php5.kiev.ua/manual/ru/function.printer-draw-text.html
Placing text or other elements on a page could be a worst thing.
I wrote and use now the following code to print out a page as orientation help.
The creation time will be much shorter...

[CODE]
<?php
$p 
printer_open();
printer_set_option($pPRINTER_PAPER_FORMATPRINTER_FORMAT_A4);
printer_start_doc($p"Testpage");
printer_start_page($p);
$pen printer_create_pen(PRINTER_PEN_SOLID1"000000");
$font printer_create_font("Courier"3719PRINTER_FW_NORMALfalsefalsefalse0);

printer_select_pen($p$pen);
printer_select_font($p$font);

for (
$i 0$i 4600$i+=100)
{
printer_draw_line($p$i,0,$i,6700);
printer_draw_text($p,$i,$i,0);
}
for (
$i 0$i 6700$i+=100)
{
printer_draw_line($p0,$i,4600,$i);
printer_draw_text($p,$i,0,$i);
}

printer_delete_font($font);
printer_delete_pen($pen);
printer_end_page($p);
printer_end_doc($p);
printer_close($p);
?>
[/CODE]

btw.
Has anyone a list for character sizes (x,y)? Like:
12px = 50, 12
14px = 60, 20

Frank
2004-06-22 16:03:10
http://php5.kiev.ua/manual/ru/function.printer-draw-text.html

    Поддержать сайт на родительском проекте КГБ