-
Notifications
You must be signed in to change notification settings - Fork 2
/
ImageAGC.class.php
127 lines (115 loc) · 2.98 KB
/
ImageAGC.class.php
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/**
* Class ImageAGC
*
* Just converts to HSB and separates the channels so that one can work on the V- (or rather B) channel
* to transform an image using adaptive gamma correction techniques. This class also holds methods
* which are identical in the concrete classes.
*
* @author Jean-Michel Bruenn <[email protected]>
* @copyright 2018 <[email protected]>
* @license https://opensource.org/licenses/MIT The MIT License
* @see https://github.com/chani/AdaptiveGammaCorrection
*/
abstract class ImageAGC
{
/**
* @var \Imagick
*/
protected $original = null;
/**
* @var \Imagick
*/
protected $im = null;
/**
* @var \Imagick
*/
protected $h = null;
/**
* @var \Imagick
*/
protected $s = null;
/**
* @var \Imagick
*/
protected $b = null;
/**
* @var \Imagick
*/
protected $t = null;
/**
* @var int|null
*/
protected $colorspace = null;
/**
* @param \Imagick $im
*/
public function __construct(\Imagick $im)
{
$this->original = $im;
}
/**
* @param Imagick $im
*/
protected function buildHsvWorkingSpace(\Imagick $im)
{
$colorspace = $im->getImageColorspace();
if ($colorspace == \Imagick::COLORSPACE_UNDEFINED) {
$colorspace = \Imagick::COLORSPACE_SRGB;
}
$this->colorspace = $colorspace;
if ($colorspace != \Imagick::COLORSPACE_GRAY) {
$im->transformImageColorspace(\Imagick::COLORSPACE_HSB);
$h = clone $im;
$s = clone $im;
$h->separateImageChannel(\Imagick::CHANNEL_RED);
$s->separateImageChannel(\Imagick::CHANNEL_GREEN);
$this->h = $h;
$this->s = $s;
}
$this->im = $im;
$b = clone $im;
$b->separateImageChannel(\Imagick::CHANNEL_BLUE);
$this->b = $b;
$this->t = clone $b;
}
/**
* @param null $filename
* @return bool
*/
public function writeImage($filename = null)
{
return $this->transform()->writeimage($filename);
}
/**
* @return Imagick
*/
protected function transform()
{
return $this->combine();
}
/**
* @return \Imagick
*/
protected function combine()
{
if ($this->colorspace == \Imagick::COLORSPACE_GRAY) {
return $this->t;
} else {
$n = new Imagick();
$n->addImage($this->h);
$n->addImage($this->s);
$n->addImage($this->t);
$n->setimagecolorspace(\imagick::COLORSPACE_HSB);
$n->mergeimagelayers(\Imagick::LAYERMETHOD_FLATTEN);
$n = $n->combineImages(\imagick::CHANNEL_ALL);
$n->setimagecolorspace(\imagick::COLORSPACE_HSB);
}
$n->transformimagecolorspace($this->colorspace);
return $n;
}
public function __toString()
{
return $this->transform()->__toString();
}
}