Sophie

Sophie

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

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

<HTML
><HEAD
><TITLE
>printer_draw_elipse</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_chord"
HREF="function.printer-draw-chord.html"><LINK
REL="NEXT"
TITLE="printer_draw_line"
HREF="function.printer-draw-line.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-chord.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-line.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="function.printer-draw-elipse"
></A
>printer_draw_elipse</H1
><DIV
CLASS="refnamediv"
><A
NAME="AEN66203"
></A
><P
>    (no version information, might be only in CVS)</P
>printer_draw_elipse&nbsp;--&nbsp;Draw an ellipse</DIV
><DIV
CLASS="refsect1"
><A
NAME="AEN66206"
></A
><H2
>Description</H2
>void <B
CLASS="methodname"
>printer_draw_elipse</B
> ( resource handle, int ul_x, int ul_y, int lr_x, int lr_y)<BR
></BR
><P
>&#13;     The function simply draws an ellipse.
     <TT
CLASS="parameter"
><I
>handle</I
></TT
> must be a valid handle to a printer.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>ul_x</I
></TT
> is the upper left x coordinate of the ellipse.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>ul_y</I
></TT
> is the upper left y coordinate of the ellipse.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>lr_x</I
></TT
> is the lower right x coordinate of the ellipse.
    </P
><P
>&#13;     <TT
CLASS="parameter"
><I
>lr_y</I
></TT
> is the lower right y coordinate of the ellipse.
    </P
><TABLE
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
CLASS="EXAMPLE"
><TR
><TD
><DIV
CLASS="example"
><A
NAME="AEN66236"
></A
><P
><B
>Ejemplo 1. 
      <B
CLASS="function"
>printer_draw_elipse()</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_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);</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-chord.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-line.html"
ACCESSKEY="N"
>Siguiente</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>printer_draw_chord</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_line</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>