git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132612 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mehdi Achour 2003-06-20 14:37:21 +00:00
parent d8a3146641
commit 6e0a1241a4
3 changed files with 18 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
<refentry id="function.imagecolorallocate">
<refnamediv>
@ -39,6 +39,10 @@ $black = imagecolorallocate ($im, 0, 0, 0);
<para>
Returns -1 if the allocation failed.
</para>
<para>
See also <function>imagecolorallocatealpha</function> and
<function>imagecolordeallocate</function>.
</para>
</refsect1>
</refentry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- $Revision: 1.2 $ -->
<refentry id="function.imagecolorallocatealpha">
<refnamediv>
<refname>imagecolorallocatealpha</refname>
@ -26,6 +26,10 @@
<para>
Returns &false; if the allocation failed.
</para>
<para>
See also <function>imagecolorallocate</function> and
<function>imagecolordeallocate</function>.
</para>
</refsect1>
</refentry>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
<refentry id="function.imagecolordeallocate">
<refnamediv>
@ -15,8 +15,9 @@
</methodsynopsis>
<para>
The <function>imagecolordeallocate</function> function
de-allocates a color previously allocated with the
<function>imagecolorallocate</function> function.
de-allocates a color previously allocated with
<function>imagecolorallocate</function> or
<function>imagecolorallocatealpha</function>.
<informalexample>
<programlisting role="php">
<![CDATA[
@ -26,6 +27,10 @@ imagecolordeallocate ($im, $white);
</programlisting>
</informalexample>
</para>
<para>
See also <function>imagecolorallocate</function> and
<function>imagecolorallocatealpha</function>.
</para>
</refsect1>
</refentry>