Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > a34ed6838d4b29d38abd504392a4a797 > files > 2303

php-manual-es-4.3.0-2mdk.noarch.rpm

<HTML
><HEAD
><TITLE
>printer_draw_chord</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REL="HOME"
TITLE="Manual de PHP"
HREF="index.html"><LINK
REL="UP"
TITLE="Printer functions"
HREF="ref.printer.html"><LINK
REL="PREVIOUS"
TITLE="printer_draw_bmp"
HREF="function.printer-draw-bmp.html"><LINK
REL="NEXT"
TITLE="printer_draw_elipse"
HREF="function.printer-draw-elipse.html"><META
HTTP-EQUIV="Content-type"
CONTENT="text/html; charset=ISO-8859-1"></HEAD
><BODY
CLASS="refentry"
BGCOLOR="#FFFFFF"
TEXT="#000000"
LINK="#0000FF"
VLINK="#840084"
ALINK="#0000FF"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="3"
ALIGN="center"
>Manual de PHP</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="bottom"
><A
HREF="function.printer-draw-bmp.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="80%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="bottom"
><A
HREF="function.printer-draw-elipse.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.printer-draw-chord"
></A
>printer_draw_chord</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN66145"
></A
><P
>    (no version information, might be only in CVS)</P
>printer_draw_chord&nbsp;--&nbsp;Draw a chord</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN66148"
></A
><H2
>Description</H2
>void <B
CLASS="methodname"
>printer_draw_chord</B
> ( resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1)<BR
></BR
><P
>&#13;     The function simply draws an chord.
     <TT
CLASS="parameter"
><I
>handle</I
></TT
> must be a valid handle to a printer.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rec_x</I
></TT
> is the upper left x coordinate of the 
     bounding rectangle.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rec_y</I
></TT
> is the upper left y coordinate of  the 
     bounding rectangle.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rec_x1</I
></TT
> is the lower right x coordinate of the 
     bounding rectangle.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rec_y1</I
></TT
> is the lower right y coordinate of 
     the bounding rectangle.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad_x</I
></TT
> is x coordinate of the radial defining 
     the beginning of the chord.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad_y</I
></TT
> is y coordinate of the radial defining 
     the beginning of the chord.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad_x1</I
></TT
> is x coordinate of the radial defining 
     the end of the chord.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad_y1</I
></TT
> is y coordinate of the radial defining 
     the end of the chord.
    </P
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN66198"
></A
><P
><B
>Ejemplo 1. <B
CLASS="function"
>printer_draw_chord()</B
> example</B
></P
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
CELLPADDING="5"
><TR
><TD
><PRE
CLASS="php"
>$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_chord($handle, 1, 1, 500, 500, 1, 1, 500, 1);

printer_delete_brush($brush);
printer_delete_pen($pen);

printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);</PRE
></TD
></TR
></TABLE
></DIV
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="function.printer-draw-bmp.html"
ACCESSKEY="P"
>Anterior</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Inicio</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="function.printer-draw-elipse.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>printer_draw_bmp</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="ref.printer.html"
ACCESSKEY="U"
>Subir</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>printer_draw_elipse</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>