Product_Image::getContentImage PHP Method

getContentImage() public method

public getContentImage ( boolean $upscale = false ) : Image
$upscale boolean [optional]
return Image
    public function getContentImage($upscale = false)
    {
        $width = self::config()->content_image_width;
        $height = self::config()->content_image_height;
        return $this->getImageAt($width, $height, $upscale);
    }