Skip to content

Commit 7011230

Browse files
Merge pull request #10186 from SidRoberts/image
[2.0.x] Tidied up Image component (docblocks, comments, use statements).
2 parents 760b9e2 + ff40ed7 commit 7011230

File tree

4 files changed

+48
-49
lines changed

4 files changed

+48
-49
lines changed

phalcon/image/adapter.zep

+23-27
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@
2020
namespace Phalcon\Image;
2121

2222
use Phalcon\Image;
23-
use Phalcon\Image\Adapter;
24-
use Phalcon\Image\Exception;
2523

2624
/**
27-
* Phalcon\Image
25+
* Phalcon\Image\Adapter
2826
*
2927
* All image adapters must use this class
3028
*/
@@ -37,34 +35,34 @@ abstract class Adapter
3735

3836
protected _realpath { get };
3937

40-
/**
41-
* Image width
42-
*
43-
* @var int
44-
*/
38+
/**
39+
* Image width
40+
*
41+
* @var int
42+
*/
4543
protected _width { get };
4644

47-
/**
48-
* Image height
49-
*
50-
* @var int
51-
*/
45+
/**
46+
* Image height
47+
*
48+
* @var int
49+
*/
5250
protected _height { get };
5351

54-
/**
55-
* Image type
56-
*
57-
* Driver dependent
58-
*
59-
* @var int
60-
*/
52+
/**
53+
* Image type
54+
*
55+
* Driver dependent
56+
*
57+
* @var int
58+
*/
6159
protected _type { get };
6260

63-
/**
64-
* Image mime type
65-
*
66-
* @var string
67-
*/
61+
/**
62+
* Image mime type
63+
*
64+
* @var string
65+
*/
6866
protected _mime { get };
6967

7068
protected static _checked = false;
@@ -353,8 +351,6 @@ abstract class Adapter
353351

354352
/**
355353
* Composite one image onto another
356-
*
357-
* @param Phalcon\Image\Adapter watermark
358354
*/
359355
public function mask(<Adapter> watermark) -> <Adapter>
360356
{

phalcon/image/adapter/gd.zep

+15-11
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,15 @@
1919

2020
namespace Phalcon\Image\Adapter;
2121

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
2327
{
2428
protected static _checked = false;
2529

26-
public static function check()
30+
public static function check() -> boolean
2731
{
2832
var version, info, matches;
2933

@@ -32,7 +36,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
3236
}
3337

3438
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");
3640
}
3741

3842
let version = null;
@@ -46,7 +50,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
4650
}
4751

4852
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);
5054
}
5155

5256
let self::_checked = true;
@@ -94,9 +98,9 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
9498
break;
9599
default:
96100
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");
98102
} 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");
100104
}
101105
break;
102106
}
@@ -105,7 +109,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
105109

106110
} else {
107111
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);
109113
}
110114

111115
let this->_image = imagecreatetruecolor(width, height);
@@ -304,7 +308,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
304308
let this->_height = imagesy(reflection);
305309
}
306310

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)
308312
{
309313
var overlay, color;
310314
int width, height;
@@ -351,7 +355,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
351355
}
352356

353357
if !s0 || !s1 || !s4 || !s5 {
354-
throw new \Phalcon\Image\Exception("Call to imagettfbbox() failed");
358+
throw new Exception("Call to imagettfbbox() failed");
355359
}
356360

357361
let width = abs(s4 - s0) + 10;
@@ -386,7 +390,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
386390
}
387391
}
388392

389-
protected function _mask(<\Phalcon\Image\Adapter> mask)
393+
protected function _mask(<Adapter> mask)
390394
{
391395
var maskImage, newimage, tempImage, color, index, r, g, b;
392396
int mask_width, mask_height, x, y, alpha;
@@ -558,7 +562,7 @@ class Gd extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterfa
558562
return ob_get_clean();
559563
}
560564

561-
throw new \Phalcon\Image\Exception("Installed GD does not support '" . ext . "' images");
565+
throw new Exception("Installed GD does not support '" . ext . "' images");
562566
}
563567

564568
protected function _create(int width, int height)

phalcon/image/adapter/imagick.zep

+8-9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
namespace Phalcon\Image\Adapter;
2121

22+
use Phalcon\Image\Adapter;
23+
use Phalcon\Image\AdapterInterface;
2224
use Phalcon\Image\Exception;
2325

2426
/**
@@ -34,17 +36,15 @@ use Phalcon\Image\Exception;
3436
* }
3537
*</code>
3638
*/
37-
class Imagick extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterInterface
39+
class Imagick extends Adapter implements AdapterInterface
3840
{
3941
protected static _version = 0;
4042
protected static _checked = false;
4143

4244
/**
4345
* Checks if Imagick is enabled
44-
*
45-
* @return boolean
4646
*/
47-
public static function check()
47+
public static function check() -> boolean
4848
{
4949
if self::_checked {
5050
return true;
@@ -64,7 +64,7 @@ class Imagick extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterIn
6464
}
6565

6666
/**
67-
* \Phalcon\Image\Imagick constructor
67+
* \Phalcon\Image\Adapter\Imagick constructor
6868
*/
6969
public function __construct(string! file, int width = null, int height = null)
7070
{
@@ -108,7 +108,6 @@ class Imagick extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterIn
108108
let this->_realpath = this->_file;
109109
}
110110

111-
112111
let this->_width = this->_image->getImageWidth();
113112
let this->_height = this->_image->getImageHeight();
114113
let this->_type = this->_image->getImageType();
@@ -346,7 +345,7 @@ class Imagick extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterIn
346345
/**
347346
* Execute a watermarking.
348347
*/
349-
protected function _watermark(<\Phalcon\Image\Adapter> image, int offsetX, int offsetY, int opacity)
348+
protected function _watermark(<Adapter> image, int offsetX, int offsetY, int opacity)
350349
{
351350
var watermark, ret;
352351

@@ -435,9 +434,9 @@ class Imagick extends \Phalcon\Image\Adapter implements \Phalcon\Image\AdapterIn
435434
/**
436435
* Composite one image onto another
437436
*
438-
* @param \Phalcon\Image\Adapter $mask mask Image instance
437+
* @param Adapter $mask mask Image instance
439438
*/
440-
protected function _mask(<\Phalcon\Image\Adapter> image)
439+
protected function _mask(<Adapter> image)
441440
{
442441
var mask, ret;
443442

phalcon/image/adapterinterface.zep

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ interface AdapterInterface
2727
public function flip(int direction);
2828
public function sharpen(int amount);
2929
public function reflection(int height, int opacity = 100, boolean fadeIn = false);
30-
public function watermark(<\Phalcon\Image\Adapter> watermark, int offsetX = 0, int offsetY = 0, int opacity = 100);
30+
public function watermark(<Adapter> watermark, int offsetX = 0, int offsetY = 0, int opacity = 100);
3131
public function text(string text, int offsetX = 0, int offsetY = 0, int opacity = 100, string color = "000000", int size = 12, string fontfile = null);
32-
public function mask(<\Phalcon\Image\Adapter> watermark);
32+
public function mask(<Adapter> watermark);
3333
public function background(string color, int opacity = 100);
3434
public function blur(int radius);
3535
public function pixelate(int amount);

0 commit comments

Comments
 (0)