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

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

public getContents ( ) : string
Результат string
    public function getContents()
    {
        list(, $imageContents) = explode(';', $this->getData());
        list(, $imageContents) = explode(',', $imageContents);
        return base64_decode($imageContents);
    }