PhpOffice\PhpPresentation\Writer\PowerPoint2007\PptTheme::render PHP 메소드

render() 공개 메소드

public render ( ) : PhpOffice\Common\Adapter\Zip\ZipInterface
리턴 PhpOffice\Common\Adapter\Zip\ZipInterface
    public function render()
    {
        foreach ($this->oPresentation->getAllMasterSlides() as $oMasterSlide) {
            $this->getZip()->addFromString('ppt/theme/theme' . $oMasterSlide->getRelsIndex() . '.xml', $this->writeTheme($oMasterSlide));
        }
        return $this->getZip();
    }