Neos\Media\Domain\Model\DimensionsTrait::isOrientationSquare PHP Method

isOrientationSquare() public method

Whether this image is square aspect ratio and therefore has a square orientation
public isOrientationSquare ( ) : boolean
return boolean
    public function isOrientationSquare()
    {
        return $this->getOrientation() === ImageInterface::ORIENTATION_SQUARE;
    }