2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2005-08-10 04:48:11 +00:00
|
|
|
<!-- $Revision: 1.9 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
|
|
|
|
<refentry id="function.imagearc">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>imagearc</refname>
|
|
|
|
<refpurpose>Draw a partial ellipse</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
2005-06-23 16:53:27 +00:00
|
|
|
<type>bool</type><methodname>imagearc</methodname>
|
2002-04-18 17:13:10 +00:00
|
|
|
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
|
2002-04-15 00:12:54 +00:00
|
|
|
<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>
|
2003-02-12 17:49:07 +00:00
|
|
|
<methodparam><type>int</type><parameter>color</parameter></methodparam>
|
2002-04-15 00:12:54 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<para>
|
|
|
|
<function>imagearc</function> draws a partial ellipse centered at
|
|
|
|
<parameter>cx</parameter>, <parameter>cy</parameter> (top left is
|
2002-04-18 17:13:10 +00:00
|
|
|
0, 0) in the image represented by <parameter>image</parameter>.
|
2002-04-15 00:12:54 +00:00
|
|
|
<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. 0° is located at the three-o'clock
|
2004-05-24 12:35:22 +00:00
|
|
|
position, and the arc is drawn clockwise.
|
2002-04-15 00:12:54 +00:00
|
|
|
</para>
|
2003-05-29 20:22:13 +00:00
|
|
|
<example>
|
|
|
|
<title>Drawing a circle with <function>imagearc</function></title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
|
|
|
|
// create a 200*200 image
|
2005-08-10 04:48:11 +00:00
|
|
|
$img = imagecreatetruecolor(200, 200);
|
2003-05-29 20:22:13 +00:00
|
|
|
|
|
|
|
// allocate some colors
|
|
|
|
$white = imagecolorallocate($img, 255, 255, 255);
|
2004-05-24 12:35:22 +00:00
|
|
|
$black = imagecolorallocate($img, 0, 0, 0);
|
2003-05-29 20:22:13 +00:00
|
|
|
|
2004-05-24 13:11:12 +00:00
|
|
|
// draw a black circle
|
2004-05-24 12:35:22 +00:00
|
|
|
imagearc($img, 100, 100, 150, 150, 0, 360, $black);
|
2003-05-29 20:22:13 +00:00
|
|
|
|
|
|
|
// output image in the browser
|
|
|
|
header("Content-type: image/png");
|
|
|
|
imagepng($img);
|
|
|
|
|
|
|
|
// free memory
|
|
|
|
imagedestroy($img);
|
|
|
|
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
2002-04-15 00:12:54 +00:00
|
|
|
<para>
|
|
|
|
See also <function>imageellipse</function>,
|
|
|
|
<function>imagefilledellipse</function>, and
|
|
|
|
<function>imagefilledarc</function>.
|
|
|
|
</para>
|
|
|
|
</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
|
|
|
|
-->
|