Identicon\Generator\BaseGenerator::setSize PHP Method

setSize() public method

Set the image size.
public setSize ( integer $size )
$size integer
    public function setSize($size)
    {
        if (null === $size) {
            return $this;
        }
        $this->size = $size;
        $this->pixelRatio = (int) round($size / 5);
        return $this;
    }