Product_Image::HasLargeImage PHP Method

HasLargeImage() public method

public HasLargeImage ( ) : boolean
return boolean - is the image large enough that a "large" image makes sense?
    public function HasLargeImage()
    {
        $imageWidth = intval($this->owner->getWidth());
        return $imageWidth > self::config()->content_image_width;
    }