PhpOffice\PhpPresentation\Shape\Drawing\Gd::getContents PHP Method

getContents() public method

public getContents ( ) : string
return string
    public function getContents()
    {
        ob_start();
        call_user_func($this->getRenderingFunction(), $this->getImageResource());
        $imageContents = ob_get_contents();
        ob_end_clean();
        return $imageContents;
    }