didou Thu Nov 6 11:07:38 2003 EDT
Modified files:
/phpdoc/en/reference/image/functions imagealphablending.xml
imageantialias.xml
imagecopyresampled.xml
imagefilledarc.xml
imagefilledellipse.xml
imagesetstyle.xml
imagesetthickness.xml
Log:
some protos updates
Index: phpdoc/en/reference/image/functions/imagealphablending.xml
diff -u phpdoc/en/reference/image/functions/imagealphablending.xml:1.4
phpdoc/en/reference/image/functions/imagealphablending.xml:1.5
--- phpdoc/en/reference/image/functions/imagealphablending.xml:1.4 Tue Jun 25
17:04:36 2002
+++ phpdoc/en/reference/image/functions/imagealphablending.xml Thu Nov 6 11:07:38
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
<refentry id="function.imagealphablending">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>imagealphablending</methodname>
+ <type>bool</type><methodname>imagealphablending</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
<methodparam><type>bool</type><parameter>blendmode</parameter></methodparam>
</methodsynopsis>
@@ -26,6 +26,7 @@
when drawing on palette images.
If <parameter>blendmode</parameter> is &true;, then blending mode is enabled,
otherwise
disabled.
+ &return.success;
</para>
<note>
<para>
Index: phpdoc/en/reference/image/functions/imageantialias.xml
diff -u phpdoc/en/reference/image/functions/imageantialias.xml:1.1
phpdoc/en/reference/image/functions/imageantialias.xml:1.2
--- phpdoc/en/reference/image/functions/imageantialias.xml:1.1 Wed May 21 19:36:37
2003
+++ phpdoc/en/reference/image/functions/imageantialias.xml Thu Nov 6 11:07:38
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<refentry id="function.imageantialias">
<refnamediv>
<refname>imageantialias</refname>
@@ -11,7 +11,7 @@
<title>Description</title>
<methodsynopsis>
<type>bool</type><methodname>imageantialias</methodname>
- <methodparam><type>int</type><parameter>im</parameter></methodparam>
+ <methodparam><type>resource</type><parameter>im</parameter></methodparam>
<methodparam><type>bool</type><parameter>on</parameter></methodparam>
</methodsynopsis>
Index: phpdoc/en/reference/image/functions/imagecopyresampled.xml
diff -u phpdoc/en/reference/image/functions/imagecopyresampled.xml:1.3
phpdoc/en/reference/image/functions/imagecopyresampled.xml:1.4
--- phpdoc/en/reference/image/functions/imagecopyresampled.xml:1.3 Sat Jan 18
22:09:47 2003
+++ phpdoc/en/reference/image/functions/imagecopyresampled.xml Thu Nov 6 11:07:38
2003
@@ -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.imagecopyresampled">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>imagecopyresampled</methodname>
+ <type>bool</type><methodname>imagecopyresampled</methodname>
<methodparam><type>resource</type><parameter>dst_im</parameter></methodparam>
<methodparam><type>resource</type><parameter>src_im</parameter></methodparam>
<methodparam><type>int</type><parameter>dstX</parameter></methodparam>
@@ -25,8 +25,8 @@
<function>imagecopyresampled</function> copies a rectangular
portion of one image to another image, smoothly interpolating pixel
values so that, in particular, reducing the size of an image still
- retains a great deal of clarity.
- <parameter>Dst_im</parameter> is the destination image,
+ retains a great deal of clarity. &return.success;
+ <parameter>dst_im</parameter> is the destination image,
<parameter>src_im</parameter> is the source image identifier. If
the source and destination coordinates and width and heights
differ, appropriate stretching or shrinking of the image fragment
Index: phpdoc/en/reference/image/functions/imagefilledarc.xml
diff -u phpdoc/en/reference/image/functions/imagefilledarc.xml:1.5
phpdoc/en/reference/image/functions/imagefilledarc.xml:1.6
--- phpdoc/en/reference/image/functions/imagefilledarc.xml:1.5 Fri Aug 15 18:50:50
2003
+++ phpdoc/en/reference/image/functions/imagefilledarc.xml Thu Nov 6 11:07:38
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
<refentry id="function.imagefilledarc">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>imagefilledarc</methodname>
+ <type>bool</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>
@@ -24,6 +24,7 @@
<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>.
+ &return.success;
<parameter>W</parameter>
and <parameter>h</parameter> specifies the ellipse's width and
height respectively while the start and end points are specified
Index: phpdoc/en/reference/image/functions/imagefilledellipse.xml
diff -u phpdoc/en/reference/image/functions/imagefilledellipse.xml:1.6
phpdoc/en/reference/image/functions/imagefilledellipse.xml:1.7
--- phpdoc/en/reference/image/functions/imagefilledellipse.xml:1.6 Thu Nov 6
10:24:36 2003
+++ phpdoc/en/reference/image/functions/imagefilledellipse.xml Thu Nov 6 11:07:38
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.36 -->
<refentry id="function.imagefilledellipse">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>imagefilledellipse</methodname>
+ <type>bool</type><methodname>imagefilledellipse</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>
@@ -23,7 +23,7 @@
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. The ellipse is filled using
- <parameter>color</parameter>
+ <parameter>color</parameter>. &return.success;
</para>
<note>
<para>
Index: phpdoc/en/reference/image/functions/imagesetstyle.xml
diff -u phpdoc/en/reference/image/functions/imagesetstyle.xml:1.5
phpdoc/en/reference/image/functions/imagesetstyle.xml:1.6
--- phpdoc/en/reference/image/functions/imagesetstyle.xml:1.5 Sun Dec 22 14:46:02
2002
+++ phpdoc/en/reference/image/functions/imagesetstyle.xml Thu Nov 6 11:07:38
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/image.xml, last change in rev 1.43 -->
<refentry id="function.imagesetstyle">
<refnamediv>
@@ -9,7 +9,7 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>int</type><methodname>imagesetstyle</methodname>
+ <type>bool</type><methodname>imagesetstyle</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
<methodparam><type>array</type><parameter>style</parameter></methodparam>
</methodsynopsis>
@@ -18,7 +18,7 @@
line drawing functions (such as <function>imageline</function>
and <function>imagepolygon</function>) when drawing with the special
color <literal>IMG_COLOR_STYLED</literal> or lines of images with color
- <literal>IMG_COLOR_STYLEDBRUSHED</literal>.
+ <literal>IMG_COLOR_STYLEDBRUSHED</literal>. &return.success;
</para>
<para>
The <parameter>style</parameter> parameter is an array of pixels.
Index: phpdoc/en/reference/image/functions/imagesetthickness.xml
diff -u phpdoc/en/reference/image/functions/imagesetthickness.xml:1.3
phpdoc/en/reference/image/functions/imagesetthickness.xml:1.4
--- phpdoc/en/reference/image/functions/imagesetthickness.xml:1.3 Thu Apr 18
13:13:10 2002
+++ phpdoc/en/reference/image/functions/imagesetthickness.xml Thu Nov 6 11:07:38
2003
@@ -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.34 -->
<refentry id="function.imagesetthickness">
<refnamediv>
@@ -9,14 +9,14 @@
<refsect1>
<title>Description</title>
<methodsynopsis>
- <type>void</type><methodname>imagesetthickness</methodname>
+ <type>bool</type><methodname>imagesetthickness</methodname>
<methodparam><type>resource</type><parameter>image</parameter></methodparam>
<methodparam><type>int</type><parameter>thickness</parameter></methodparam>
</methodsynopsis>
<para>
<function>imagesetthickness</function> sets the thickness of the lines
drawn when drawing rectangles, polygons, ellipses etc. etc. to
- <parameter>thickness</parameter> pixels.
+ <parameter>thickness</parameter> pixels. &return.success;
</para>
<note><para>This function was added in PHP 4.0.6 and requires GD 2.0.1 or
later</para></note>
</refsect1>