EasyImage::image PHP Method

image() public method

This method returns the current Image instance.
public image ( ) : Image
return Image
    public function image()
    {
        if ($this->_image instanceof Image) {
            return $this->_image;
        } else {
            throw new CException('Don\'t have image');
        }
    }