[ Pobierz całość w formacie PDF ]
.printer_draw_linePodręcznik PHPPoprzedniNastępnyprinter_draw_line (PHP 4 >= 4.6)printer_draw_line -- Draw a lineDescriptionvoid printer_draw_line (resource printer_handle, int from_x, int from_y, int to_x, int to_y)
The function simply draws a line from positionfrom_x, from_y toposition to_x, to_yusing the selected pen.printer_handle mustbe a valid handle to a printer.Przykład 1.printer_draw_line() example$handle = printer_open();printer_start_doc($handle, "My Document");printer_start_page($handle);$pen = printer_create_pen(PRINTER_PEN_SOLID, 30, "000000");printer_select_pen($handle, $pen);printer_draw_line($handle, 1, 10, 1000, 10);printer_draw_line($handle, 1, 60, 500, 60);printer_delete_pen($pen);printer_end_page($handle);printer_end_doc($handle);printer_close($handle);PoprzedniSpis treściNastępnyprinter_draw_textPoczątek rozdziałuprinter_draw_chord
[ Pobierz całość w formacie PDF ]