XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 1021 - 1040 из 3519.

В начало ] Пред. | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | След.В конец ]

Упорядочить по: URL  |  дате изменения
1021. printer_draw_elipse
... handle = printer_open(); printer_start_doc($handle, "My Document"); 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_elipse($handle, 1, 1, 500, 500); printer_delete_brush($brush); printer_delete_pen($pen); printer_end_page($handle); printer_end_doc($handle); printer_close($handle); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-elipse.html -- 4.7 Кб -- 03.02.2002
Похожие документы

1022. printer_draw_line
PHP Manual . ... Next . PHP 4 >= 4.0.6) printer_draw_line -- Draw a line . void 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 position from_x , from_y to position to_x , to_y using the selected pen. printer_handle must be a valid handle to a printer. Example 1. printer_draw_line() example . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-line.html -- 4.4 Кб -- 03.02.2002
Похожие документы

1023. printer_draw_text
PHP Manual . ... PHP 4 >= 4.0.4) printer_draw_text -- Draw text . void printer_draw_text ( resource printer_handle, string text, int x, int y) . ... handle = printer_open(); printer_start_doc($handle, "My Document"); printer_start_page($handle); $font = printer_create_font("Arial",72,48,400,false,false,false,0); printer_select_font($handle, $font); printer_draw_text($handle, "test", 10, 10); printer_delete_font($font); printer_end_page($handle); printer_end_doc($handle); printer_close($handle); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-text.html -- 4.2 Кб -- 03.02.2002
Похожие документы

1024. printer_draw_rectangle
... handle = printer_open(); printer_start_doc($handle, "My Document"); 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); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-rectangle.html -- 4.7 Кб -- 03.02.2002
Похожие документы

1025. printer_draw_roundrect
... PHP 4 >= 4.0.4) printer_draw_roundrect -- Draw a rectangle with rounded corners . void printer_draw_roundrect ( resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height) . ... Example 1. printer_draw_roundrect() example . ... printer_draw_rectangle ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-draw-roundrect.html -- 5.0 Кб -- 03.02.2002
Похожие документы

1026. printer_logical_fontheight
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_logical_fontheight -- Get logical font height . int printer_logical_fontheight ( resource handle, int height) . The function calculates the logical font height of height . handle must be a valid handle to a printer. Example 1. printer_logical_fontheight() example . $handle = printer_open(); print printer_logical_fontheight($handle, 72); printer_close($handle); . Prev . Home . Next . printer_select_font . Up . printer_draw_roundrect
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-logical-fontheight.html -- 4.0 Кб -- 03.02.2002
Похожие документы

1027. printer_select_font
PHP Manual . Prev . ... void printer_select_font ( resource printer_handle, resource font_handle) . ... handle = printer_open(); printer_start_doc($handle, "My Document"); printer_start_page($handle); $font = printer_create_font("Arial", 148, 76, PRINTER_FW_MEDIUM, false, false, false, -50); printer_select_font($handle, $font); printer_draw_text($handle, "PHP is simply cool", 40, 40); printer_delete_font($font); printer_end_page($handle); printer_end_doc($handle); printer_close($handle); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-select-font.html -- 4.3 Кб -- 03.02.2002
Похожие документы

1028. printer_delete_font
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_delete_font -- Delete a font . bool printer_delete_font ( resource handle) . The function deletes the selected font. For an example see printer_select_font() . It returns TRUE on success, or FALSE otherwise. handle must be a valid handle to a font. Prev . Home . Next . printer_create_font . Up . printer_select_font
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-delete-font.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1029. printer_create_font
... mixed printer_create_font ( string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton) . ... PRINTER_FW_HEAVY : sets the font weight to heavy (900). italic can be TRUE or FALSE , and sets whether the font should be italic. underline can be TRUE or FALSE , and sets whether the font should be underlined. strikeout can be TRUE or FALSE , and sets whether the font should be striked out. orientation specifies a rotation. ... printer_delete_font ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-create-font.html -- 6.0 Кб -- 03.02.2002
Похожие документы

1030. printer_select_brush
... If you draw an rectangle the brush is used to draw the shapes, while the pen is used to draw the border. ... handle = printer_open(); printer_start_doc($ handle , My Document ); printer_start_page($ handle ); $ pen = printer_create_ pen (PRINTER_ PEN _SOLID, 2, 000000 ); printer_select_ pen ($ handle , $ pen ); $ brush = printer_create_ brush (PRINTER_ BRUSH _CUSTOM, c:\\ brush .bmp ); printer_select_brush ($ handle , $ brush ); printer_ draw _rectangle($ handle , 1,1, ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-select-brush.html -- 4.8 Кб -- 03.02.2002
Похожие документы

1031. printer_delete_brush
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_delete_brush -- Delete a brush . bool printer_delete_brush ( resource handle) . The function deletes the selected brush. For an example see printer_select_brush() . It returns TRUE on success, or FALSE otherwise. handle must be a valid handle to a brush. Prev . Home . Next . printer_create_brush . Up . printer_select_brush
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-delete-brush.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1032. printer_create_brush
... PHP 4 >= 4.0.4) printer_create_brush -- Create a new brush . mixed printer_create_brush ( int style, string color) . ... A brush is used to fill shapes. ... PRINTER_BRUSH_DIAGONAL : creates a brush with a 45-degree upward left-to-right hatch ( / ). PRINTER_BRUSH_CROSS : creates a brush with a cross hatch ( + ). ... PRINTER_BRUSH_FDIAGONAL : creates a brush with a 45-degree downward left-to-right hatch ( \ ). ... PRINTER_BRUSH_CUSTOM : creates a custom brush from an BMP file. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-create-brush.html -- 5.1 Кб -- 03.02.2002
Похожие документы

1033. printer_select_pen
... Next . PHP 4 >= 4.0.4) printer_select_pen -- Select a pen . void printer_select_pen ( resource printer_handle, resource pen_handle) . The function selects a pen as the active drawing object of the actual device context. A pen is used to draw lines and curves. ... If you haven't selected a pen before drawing shapes, the shape won't be outlined. printer_handle must be a valid handle to a printer. pen_handle must be a valid handle to a pen. Example 1. printer_select_pen() example . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-select-pen.html -- 4.5 Кб -- 03.02.2002
Похожие документы

1034. printer_delete_pen
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_delete_pen -- Delete a pen . bool printer_delete_pen ( resource handle) . The function deletes the selected pen. For an example see printer_select_pen() . It returns TRUE on success, or FALSE otherwise. handle must be a valid handle to a pen. Prev . Home . Next . printer_create_pen . Up . printer_select_pen
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-delete-pen.html -- 3.6 Кб -- 03.02.2002
Похожие документы

1035. printer_create_pen
... Next . PHP 4 >= 4.0.4) printer_create_pen -- Create a new pen . mixed printer_create_pen ( int style, int width, string color) . The function creates a new pen and returns a handle to it. ... PRINTER_PEN_SOLID : creates a solid pen. PRINTER_PEN_DASH : creates a dashed pen. PRINTER_PEN_DOT : creates a dotted pen. PRINTER_PEN_DASHDOT : creates a pen with dashes and dots. PRINTER_PEN_DASHDOTDOT : creates a pen with dashes and double dots. ... printer_delete_pen ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-create-pen.html -- 4.6 Кб -- 03.02.2002
Похожие документы

1036. printer_start_page
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_start_page -- Start a new page . bool printer_start_page ( resource handle) . The function creates a new page in the active document. For an example see printer_start_doc() . handle must be a valid handle to a printer. Prev . Home . Next . printer_end_doc . Up . printer_end_page
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-start-page.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1037. printer_end_page
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_end_page -- Close active page . bool printer_end_page ( resource handle) . The function closes the active page in the active document. For an example see printer_start_doc() . handle must be a valid handle to a printer. Prev . Home . Next . printer_start_page . Up . printer_create_pen
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-end-page.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1038. printer_start_doc
... Prev . ... PHP 4 >= 4.0.4) printer_start_doc -- Start a new document . bool printer_start_doc ( resource handle [, string document]) . ... A document can contain multiple pages, it's used to schedule the print job in the spooler. handle must be a valid handle to a printer. ... Example 1. printer_start_doc() example . handle = printer_open(); printer_start_doc($handle, "My Document"); printer_start_page($handle); printer_end_page($handle); printer_end_doc($handle); printer_close($handle); . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-start-doc.html -- 4.1 Кб -- 03.02.2002
Похожие документы

1039. printer_end_doc
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.4) printer_end_doc -- Close document . bool printer_end_doc ( resource handle) . Closes a new document in the printer spooler. The document is now ready for printing. For an example see printer_start_doc() . handle must be a valid handle to a printer. Prev . Home . Next . printer_start_doc . Up . printer_start_page
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-end-doc.html -- 3.5 Кб -- 03.02.2002
Похожие документы

1040. printer_create_dc
PHP Manual . ... PHP 4 >= 4.0.4) printer_create_dc -- Create a new device context . void printer_create_dc ( resource handle) . ... handle = printer_open(); printer_start_doc($ handle ); printer_start_page($ handle ); printer_create_dc ($ handle ); /* do some stuff with the dc */ printer_set_option($ handle , PRINTER_TEXT_COLOR, 333333 ); printer_draw_text($ handle , 1, 1, text ); printer_delete_dc ($ handle ); /* create another dc */ printer_create_dc ($ handle ); printer_set_option($ ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.printer-create-dc.html -- 4.3 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования