PhpOffice\PhpPresentation\Shape\Drawing\Gd::getContents PHP Метод

getContents() публичный Метод

public getContents ( ) : string
Результат string
    public function getContents()
    {
        ob_start();
        call_user_func($this->getRenderingFunction(), $this->getImageResource());
        $imageContents = ob_get_contents();
        ob_end_clean();
        return $imageContents;
    }