Index: imagecopyresampled.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/image/functions/imagecopyresampled.xml,v
retrieving revision 1.11
diff -u -p -r1.11 imagecopyresampled.xml
--- imagecopyresampled.xml 20 Jun 2007 22:24:38 -0000 1.11
+++ imagecopyresampled.xml 6 Dec 2007 01:16:18 -0000
@@ -27,6 +27,15 @@
retains a great deal of clarity.
+ In other words, imagecopyresampled will take an
+ rectangular area from src_image of width
+ src_w and height src_h at
+ position (src_x,src_y)
+ and place it in a rectangular area of dst_image
+ of width dst_w and height dst_h
+ at position (dst_x,dst_y).
+
+
If the source and destination coordinates and width and heights
differ, appropriate stretching or shrinking of the image fragment
will be performed. The coordinates refer to the upper left
Index: imagecopyresized.xml
===================================================================
RCS file: /repository/phpdoc/en/reference/image/functions/imagecopyresized.xml,v
retrieving revision 1.10
diff -u -p -r1.10 imagecopyresized.xml
--- imagecopyresized.xml 20 Jun 2007 22:24:38 -0000 1.10
+++ imagecopyresized.xml 6 Dec 2007 01:16:18 -0000
@@ -25,6 +25,17 @@
portion of one image to another image.
dst_image is the destination image,
src_image is the source image identifier.
+
+
+ In other words, imagecopyresized will take an
+ rectangular area from src_image of width
+ src_w and height src_h at
+ position (src_x,src_y)
+ and place it in a rectangular area of dst_image
+ of width dst_w and height dst_h
+ at position (dst_x,dst_y).
+
+
If the source and destination coordinates and width and heights
differ, appropriate stretching or shrinking of the image fragment
will be performed. The coordinates refer to the upper left