-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColorBitmap.php
More file actions
39 lines (30 loc) · 781 Bytes
/
Copy pathColorBitmap.php
File metadata and controls
39 lines (30 loc) · 781 Bytes
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
<?php
namespace LazyBitmap;
use LazyBitmap\Bitmap;
use LazyBitmap\Pixel;
class ColorBitmap extends Bitmap {
private $width;
private $height;
private $color;
public function __construct($width, $height, $red = 0, $green = 0, $blue = 0, $alpha = 0) {
$this->width = $width;
$this->height = $height;
$this->color = array(
'red' => $red,
'green' => $green,
'blue' => $blue,
'alpha' => $alpha
);
}
public function getPixel($x, $y) {
$pixel = new Pixel();
$pixel->fromArray($this->color);
return $pixel;
}
public function getWidth() {
return $this->width;
}
public function getHeight() {
return $this->height;
}
}