Sophie

Sophie

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

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

<HTML
><HEAD
><TITLE
>printer_draw_pie</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_line"
HREF="function.printer-draw-line.html"><LINK
REL="NEXT"
TITLE="printer_draw_rectangle"
HREF="function.printer-draw-rectangle.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-line.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-rectangle.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.printer-draw-pie"
></A
>printer_draw_pie</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN66275"
></A
><P
>    (no version information, might be only in CVS)</P
>printer_draw_pie&nbsp;--&nbsp;Draw a pie</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN66278"
></A
><H2
>Description</H2
>void <B
CLASS="methodname"
>printer_draw_pie</B
> ( resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y)<BR
></BR
><P
>&#13;     The function simply draws an pie.
     <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
>rad1_x</I
></TT
> is x coordinate of the first 
     radial's ending.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad1_y</I
></TT
> is y coordinate of the first 
     radial's ending.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad2_x</I
></TT
> is x coordinate of the second 
     radial's ending.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>rad2_y</I
></TT
> is y coordinate of the second 
     radial's ending.
    </P
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN66328"
></A
><P
><B
>Ejemplo 1. <B
CLASS="function"
>printer_draw_pie()</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_pie($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-line.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-rectangle.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>printer_draw_line</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_rectangle</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>