當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Html2Pdf::setDefaultFont方法代碼示例

本文整理匯總了PHP中Spipu\Html2Pdf\Html2Pdf::setDefaultFont方法的典型用法代碼示例。如果您正苦於以下問題:PHP Html2Pdf::setDefaultFont方法的具體用法?PHP Html2Pdf::setDefaultFont怎麽用?PHP Html2Pdf::setDefaultFont使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Spipu\Html2Pdf\Html2Pdf的用法示例。


在下文中一共展示了Html2Pdf::setDefaultFont方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: dirname

/**
 * Html2Pdf Library - example
 *
 * HTML => PDF convertor
 * distributed under the LGPL License
 *
 * isset($_GET['vuehtml']) is not mandatory
 * it allow to display the result in the HTML format
 *
 * @package   Html2pdf
 * @author    Laurent MINGUET <webmaster@html2pdf.fr>
 * @copyright 2016 Laurent MINGUET
 */
require_once dirname(__FILE__) . '/../vendor/autoload.php';
use Spipu\Html2Pdf\Html2Pdf;
use Spipu\Html2Pdf\Html2PdfException;
// get the HTML
ob_start();
require dirname(__FILE__) . '/res/exemple00.php';
$content = ob_get_clean();
// convert to PDF
try {
    $html2pdf = new Html2Pdf('P', 'A4', 'fr');
    $html2pdf->setDefaultFont('Arial');
    $html2pdf->writeHTML($content, isset($_GET['vuehtml']));
    $html2pdf->Output('exemple00.pdf');
} catch (Html2PdfException $e) {
    echo $e;
    exit;
}
開發者ID:bendspoons,項目名稱:html2pdf,代碼行數:30,代碼來源:exemple00.php

示例2: _prepareSubObj

 /**
  * prepare self::$_subobj (used for create the sub Html2Pdf objects
  *
  * @access protected
  */
 protected function _prepareSubObj()
 {
     $pdf = null;
     // create the sub object
     self::$_subobj = new Html2Pdf($this->_orientation, $this->_format, $this->_langue, $this->_unicode, $this->_encoding, array($this->_defaultLeft, $this->_defaultTop, $this->_defaultRight, $this->_defaultBottom));
     // init
     self::$_subobj->setTestTdInOnePage($this->_testTdInOnepage);
     self::$_subobj->setTestIsImage($this->_testIsImage);
     self::$_subobj->setDefaultFont($this->_defaultFont);
     self::$_subobj->parsingCss->css =& $this->parsingCss->css;
     self::$_subobj->parsingCss->cssKeys =& $this->parsingCss->cssKeys;
     self::$_subobj->extensions = $this->extensions;
     // clone font from the original PDF
     self::$_subobj->pdf->cloneFontFrom($this->pdf);
     // remove the link to the parent
     self::$_subobj->parsingCss->setPdfParent($pdf);
 }
開發者ID:kamena,項目名稱:kdwp-invoice,代碼行數:22,代碼來源:Html2Pdf.php


注:本文中的Spipu\Html2Pdf\Html2Pdf::setDefaultFont方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。