Files
doc-en/reference/image/functions/imagefilledarc.xml
Sander Roobol ce2e02e8b4 GD uses resources...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@78672 c90b9560-bf6c-de11-be94-00142212c4b1
2002-04-18 17:13:10 +00:00

73 lines
3.2 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
<refentry id="function.imagefilledarc">
<refnamediv>
<refname>imagefilledarc</refname>
<refpurpose>Draw a partial ellipse and fill it</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<methodsynopsis>
<type>int</type><methodname>imagefilledarc</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
<methodparam><type>int</type><parameter>cx</parameter></methodparam>
<methodparam><type>int</type><parameter>cy</parameter></methodparam>
<methodparam><type>int</type><parameter>w</parameter></methodparam>
<methodparam><type>int</type><parameter>h</parameter></methodparam>
<methodparam><type>int</type><parameter>s</parameter></methodparam>
<methodparam><type>int</type><parameter>e</parameter></methodparam>
<methodparam><type>int</type><parameter>col</parameter></methodparam>
<methodparam><type>int</type><parameter>style</parameter></methodparam>
</methodsynopsis>
<para>
<function>imagefilledarc</function> draws a partial ellipse centered at
<parameter>cx</parameter>, <parameter>cy</parameter> (top left is
0, 0) in the image represented by <parameter>image</parameter>.
<parameter>W</parameter>
and <parameter>h</parameter> specifies the ellipse's width and
height respectively while the start and end points are specified
in degrees indicated by the <parameter>s</parameter> and
<parameter>e</parameter> arguments.
<parameter>style</parameter> is a bitwise OR of the following possibilities:
<orderedlist>
<listitem><simpara><literal>IMG_ARC_PIE</literal></simpara></listitem>
<listitem><simpara><literal>IMG_ARC_CHORD</literal></simpara></listitem>
<listitem><simpara><literal>IMG_ARC_NOFILL</literal></simpara></listitem>
<listitem><simpara><literal>IMG_ARC_EDGED</literal></simpara></listitem>
</orderedlist>
<literal>IMG_ARC_PIE</literal> and <literal>IMG_ARC_CHORD</literal> are
mutually exclusive; <literal>IMG_ARC_CHORD</literal> just
connects the starting and ending angles with a straight line, while
<literal>IMG_ARC_PIE</literal> produces a rounded edge.
<literal>IMG_ARC_NOFILL</literal> indicates that the arc
or chord should be outlined, not filled. <literal>IMG_ARC_EDGED</literal>,
used together with <literal>IMG_ARC_NOFILL</literal>, indicates that the
beginning and ending angles should be connected to the center - this is a
good way to outline (rather than fill) a 'pie slice'.
</para>
<note><para>This function was added in PHP 4.0.6 and requires GD 2.0.1</para></note>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->