19
19
20
20
namespace Phalcon\Image\Adapter;
21
21
22
- class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterface
22
+ use Phalcon\Image\Adapter;
23
+ use Phalcon\Image\AdapterInterface;
24
+ use Phalcon\Image\Exception;
25
+
26
+ class Gd extends Adapter implements AdapterInterface
23
27
{
24
28
protected static _checked = false ;
25
29
26
- public static function check ()
30
+ public static function check () -> boolean
27
31
{
28
32
var version, info, matches;
29
33
@@ -32,7 +36,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
32
36
}
33
37
34
38
if ! function_exists(" gd_info" ) {
35
- throw new \Phalcon\Image\ Exception(" GD is either not installed or not enabled, check your configuration" );
39
+ throw new Exception (" GD is either not installed or not enabled, check your configuration" );
36
40
}
37
41
38
42
let version = null ;
@@ -46,7 +50,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
46
50
}
47
51
48
52
if ! version_compare(version, " 2.0.1" , " >=" ) {
49
- throw new \Phalcon\Image\ Exception(" Phalcon\\ Image\\ Adapter\\ GD requires GD version '2.0.1' or greater, you have " . version);
53
+ throw new Exception (" Phalcon\\ Image\\ Adapter\\ GD requires GD version '2.0.1' or greater, you have " . version);
50
54
}
51
55
52
56
let self :: _checked = true ;
@@ -94,9 +98,9 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
94
98
break ;
95
99
default :
96
100
if this -> _mime {
97
- throw new \Phalcon\Image\ Exception(" Installed GD does not support " . this -> _mime . " images" );
101
+ throw new Exception (" Installed GD does not support " . this -> _mime . " images" );
98
102
} else {
99
- throw new \Phalcon\Image\ Exception(" Installed GD does not support such images" );
103
+ throw new Exception (" Installed GD does not support such images" );
100
104
}
101
105
break ;
102
106
}
@@ -105,7 +109,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
105
109
106
110
} else {
107
111
if ! width || ! height {
108
- throw new \Phalcon\Image\ Exception(" Failed to create image from file " . this -> _file);
112
+ throw new Exception (" Failed to create image from file " . this -> _file);
109
113
}
110
114
111
115
let this -> _image = imagecreatetruecolor(width, height);
@@ -304,7 +308,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
304
308
let this -> _height = imagesy(reflection);
305
309
}
306
310
307
- protected function _watermark (<\Phalcon\Image\ Adapter> watermark, int offsetX, int offsetY, int opacity )
311
+ protected function _watermark (<Adapter> watermark, int offsetX, int offsetY, int opacity )
308
312
{
309
313
var overlay, color;
310
314
int width, height;
@@ -351,7 +355,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
351
355
}
352
356
353
357
if ! s0 || ! s1 || ! s4 || ! s5 {
354
- throw new \Phalcon\Image\ Exception(" Call to imagettfbbox() failed" );
358
+ throw new Exception (" Call to imagettfbbox() failed" );
355
359
}
356
360
357
361
let width = abs(s4 - s0) + 10 ;
@@ -386,7 +390,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
386
390
}
387
391
}
388
392
389
- protected function _mask (<\Phalcon\Image\ Adapter> mask )
393
+ protected function _mask (<Adapter> mask )
390
394
{
391
395
var maskImage, newimage, tempImage, color, index, r, g, b;
392
396
int mask_width, mask_height, x, y, alpha;
@@ -558,7 +562,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
558
562
return ob_get_clean();
559
563
}
560
564
561
- throw new \Phalcon\Image\ Exception(" Installed GD does not support '" . ext . " ' images" );
565
+ throw new Exception (" Installed GD does not support '" . ext . " ' images" );
562
566
}
563
567
564
568
protected function _create (int width, int height )
0 commit comments