Beispiel 1.
printer_select_brush() Beispiel
<?php $handle = printer_open(); printer_start_doc($handle, "Mein Dokument"); printer_start_page($handle);
$stift = printer_create_pen(PRINTER_PEN_SOLID, 2, "000000"); printer_select_pen($handle, $stift); $pinsel = printer_create_brush(PRINTER_BRUSH_CUSTOM, "c:\\brush.bmp"); printer_select_brush($handle, $pinsel);
printer_draw_rectangle($handle, 1, 1, 500, 500);
printer_delete_brush($pinsel);
$pinsel = printer_create_brush(PRINTER_BRUSH_SOLID, "000000"); printer_select_brush($handle, $pinsel); printer_draw_rectangle($handle, 1, 501, 500, 1001); printer_delete_brush($pinsel);
printer_delete_pen($stift);
printer_end_page($handle); printer_end_doc($handle); printer_close($handle); ?>
|
|