mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-29 23:38:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@161074 c90b9560-bf6c-de11-be94-00142212c4b1
100 lines
3.1 KiB
XML
100 lines
3.1 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.6 $ -->
|
|
<refentry id="function.imagecolorallocatealpha">
|
|
<refnamediv>
|
|
<refname>imagecolorallocatealpha</refname>
|
|
<refpurpose>Allocate a color for an image</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>int</type><methodname>imagecolorallocatealpha</methodname>
|
|
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>red</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>green</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>blue</parameter></methodparam>
|
|
<methodparam><type>int</type><parameter>alpha</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>imagecolorallocatealpha</function> behaves identically to
|
|
<function>imagecolorallocate</function> with the addition of the transparency
|
|
parameter <parameter>alpha</parameter> which may have a value between
|
|
<literal>0</literal> and <literal>127</literal>. <literal>0</literal>
|
|
indicates completely opaque while <literal>127</literal> indicates
|
|
completely transparent.
|
|
</para>
|
|
<para>
|
|
Returns &false; if the allocation failed.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Example of using <function>imagecolorallocatealpha</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$size = 300;
|
|
$image=imagecreatetruecolor($size, $size);
|
|
|
|
// something to get a white background with black border
|
|
$back = imagecolorallocate($image, 255, 255, 255);
|
|
$border = imagecolorallocate($image, 0, 0, 0);
|
|
imagefilledrectangle($image, 0, 0, $size - 1, $size - 1, $back);
|
|
imagerectangle($image, 0, 0, $size - 1, $size - 1, $border);
|
|
|
|
$yellow_x = 100;
|
|
$yellow_y = 75;
|
|
$red_x = 120;
|
|
$red_y = 165;
|
|
$blue_x = 187;
|
|
$blue_y = 125;
|
|
$radius = 150;
|
|
|
|
// allocate colors with alpha values
|
|
$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75);
|
|
$red = imagecolorallocatealpha($image, 255, 0, 0, 75);
|
|
$blue = imagecolorallocatealpha($image, 0, 0, 255, 75);
|
|
|
|
// drawing 3 overlapped circle
|
|
imagefilledellipse($image, $yellow_x, $yellow_y, $radius, $radius, $yellow);
|
|
imagefilledellipse($image, $red_x, $red_y, $radius, $radius, $red);
|
|
imagefilledellipse($image, $blue_x, $blue_y, $radius, $radius, $blue);
|
|
|
|
// don't forget to output a correct header!
|
|
header('Content-type: image/png');
|
|
|
|
// and finally, output the result
|
|
imagepng($image);
|
|
imagedestroy($image);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
¬e.gd.2;
|
|
<para>
|
|
See also <function>imagecolorallocate</function> and
|
|
<function>imagecolordeallocate</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
|
|
-->
|