ColorThief\Image\Adapter\GDImageAdapter::getPixelColor PHP Method

getPixelColor() public method

public getPixelColor ( $x, $y )
    public function getPixelColor($x, $y)
    {
        $rgba = imagecolorat($this->resource, $x, $y);
        $color = imagecolorsforindex($this->resource, $rgba);
        return (object) $color;
    }