コード例 #1
0
ファイル: html2pdf.class.php プロジェクト: RomLAURENT/Jar2Fer
    /**
     * tag : G
     * mode : OPEN
     *
     * @param  array $param
     * @return boolean
     */
    protected function _tag_open_G($param)
    {
        if (!$this->_isInDraw) throw new HTML2PDF_exception(8, 'G');

        $this->pdf->doTransform(isset($param['transform']) ? $this->_prepareTransform($param['transform']) : null);
        $this->parsingCss->save();
        $styles = $this->parsingCss->getSvgStyle('path', $param);
        $style = $this->pdf->svgSetStyle($styles);
    }