Exemplo n.º 1
0
 public function getPixel($x, $y)
 {
     $index = imagecolorat($this->image, $x, $y);
     $colors = imagecolorsforindex($this->image, $index);
     $pixel = new Pixel();
     $pixel->fromArray($colors);
     return $pixel;
 }
Exemplo n.º 2
0
 public function getPixel($x, $y)
 {
     $pixel = new Pixel();
     $pixel->fromArray($this->color);
     return $pixel;
 }