Funkcja zwraca prostokąt.
Parametry
printer_handle musi być ważny do obsługi drukarki.
- ul_x jest lewym górnym x koordynującym prostokąt
- ul_y- jest lewym górnym y koordynującym prostokąt
- lr_x- jest prawym dolnym x koordynującym prostokąt
- lr_y- jest prawym dolnym y koordynującym prostokąt
Zwracane wartości
żadna wartość nie jest zwracana.
Listing
//Przeglądaj #1 printer_draw_rectangle()
<?php
$handle = printer_open();
printer_start_doc($handle, \"Mój dokument\");
printer_start_page($handle);
$pen = printer_create_pen(PRINTER_PEN_SOLID, 2, \"000000\");
printer_select_pen($handle, $pen);
$brush = printer_create_brush(PRINTER_BRUSH_SOLID, \"2222FF\");
printer_select_brush($handle, $brush);
printer_draw_rectangle($handle, 1, 1, 500, 500);
printer_delete_brush($brush);
printer_delete_pen($pen);
printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>
Ranga: Administrator serwisu Punktów: 0