summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagesetbrush_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/gd/tests/imagesetbrush_basic.phpt')
-rw-r--r--ext/gd/tests/imagesetbrush_basic.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/gd/tests/imagesetbrush_basic.phpt b/ext/gd/tests/imagesetbrush_basic.phpt
index e1a9c6a80c..0afe6fc1d0 100644
--- a/ext/gd/tests/imagesetbrush_basic.phpt
+++ b/ext/gd/tests/imagesetbrush_basic.phpt
@@ -13,16 +13,16 @@ if (!extension_loaded('gd')) {
<?php
// Create the brush image
$img = imagecreate(10, 10);
-
+
// Create the main image, 100x100
$mainimg = imagecreatetruecolor(100, 100);
-
+
$white = imagecolorallocate($img, 255, 0, 0);
imagefilledrectangle($img, 0, 0, 299, 99, $white);
// Set the brush
imagesetbrush($mainimg, $img);
-
+
// Draw a couple of brushes, each overlaying each
imageline($mainimg, 50, 50, 50, 60, IMG_COLOR_BRUSHED);