summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagecolorallocate_variation6.phpt
blob: a3649be71f6d738b0b3b4a4775240962c962489e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
--TEST--
Test imagecolorallocate() function : usage variations  - passing RED, GREEN, BLUE values more than 255
--SKIPIF--
<?php
if(!extension_loaded('gd')) {
    die('skip gd extension is not loaded');
}
if(!function_exists('imagecreatetruecolor')) {
    die('skip imagecreatetruecolor function is not available');
}
?>
--FILE--
<?php
/* Prototype  : int imagecolorallocate(resource im, int red, int green, int blue)
 * Description:  Allocate a color for an image
 * Source code: ext/gd/gd.c
 */
echo "*** Testing imagecolorallocate() : usage variations ***\n";

$values = array(
      //Decimal integera data
      "Decimal 256" => 256,

      // octal integer data
      "Octal 0400" => 0400,

      // hexa-decimal integer data
      "Hexa-decimal 0x100" => 0x100
);

// loop through each element of the array for blue
foreach($values as $key => $value) {
      echo "\n--$key--\n";
      //Need to be created every time to get expected return value
      $im_palette = imagecreate(200, 200);
      $im_true_color = imagecreatetruecolor(200, 200);
      var_dump( imagecolorallocate($im_palette, $value, 0, 0) );
      var_dump( imagecolorallocate($im_true_color, $value, 0, 0) );
      var_dump( imagecolorallocate($im_palette, 0, $value, 0) );
      var_dump( imagecolorallocate($im_true_color, 0, $value, 0) );
      var_dump( imagecolorallocate($im_palette, 0, 0, $value) );
      var_dump( imagecolorallocate($im_true_color, 0, 0, $value) );
};
?>
===DONE===
--EXPECTF--
*** Testing imagecolorallocate() : usage variations ***

--Decimal 256--

Warning: imagecolorallocate(): Red component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Red component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Green component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Green component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Blue component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Blue component is out of range in %s on line %d
bool(false)

--Octal 0400--

Warning: imagecolorallocate(): Red component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Red component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Green component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Green component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Blue component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Blue component is out of range in %s on line %d
bool(false)

--Hexa-decimal 0x100--

Warning: imagecolorallocate(): Red component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Red component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Green component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Green component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Blue component is out of range in %s on line %d
bool(false)

Warning: imagecolorallocate(): Blue component is out of range in %s on line %d
bool(false)
===DONE===