|
Последние активные темы форума |
|
printer_draw_bmp
(no version information, might be only in CVS) printer_draw_bmp -- Draw a bmp
Descriptionvoid 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.
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Пример 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"
,
1
,
1
);
printer_end_page
(
$handle
);
printer_end_doc
(
$handle
);
printer_close
(
$handle
);
?>
|
|
|