Compzone.Org :: Podręcznik PHP :: printer_draw_bmp
Jaki jest Twój wiek?
40 - 59
26 - 39
19 - 25
13 - 18
12 i mniej
60 i więcej
Sonda Wyniki

Add to Google

printer_draw_bmp

(PECL)

printer_draw_bmp -- Draw a bmp

Description

bool printer_draw_bmp ( resource handle, string filename, int x, int y [, int width, int height] )

The function simply draws an bmp the bitmap filename at position x, y. handle must be a valid handle to a printer.

Zwraca TRUE w przypadku sukcesu, FALSE w przypadku porażki.

Przykład 1. printer_draw_bmp() example

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

printer_draw_bmp($handle"c:\\image.bmp"11);

printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>
Copyright © 2005-2006 Compzone.Org. Kopiowanie i wykorzystywanie materiałów zawartych na tej stronie bez zgody autora zabronione!