当前位置: 首页>>代码示例>>PHP>>正文


PHP Settings::getPdfRendererPath方法代码示例

本文整理汇总了PHP中PhpOffice\PhpWord\Settings::getPdfRendererPath方法的典型用法代码示例。如果您正苦于以下问题:PHP Settings::getPdfRendererPath方法的具体用法?PHP Settings::getPdfRendererPath怎么用?PHP Settings::getPdfRendererPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在PhpOffice\PhpWord\Settings的用法示例。


在下文中一共展示了Settings::getPdfRendererPath方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testSetGetPdfRenderer

 /**
  * Test set/get PDF renderer
  */
 public function testSetGetPdfRenderer()
 {
     $domPdfPath = realpath(PHPWORD_TESTS_BASE_DIR . '/../vendor/dompdf/dompdf');
     $this->assertFalse(Settings::setPdfRenderer('FOO', 'dummy/path'));
     $this->assertTrue(Settings::setPdfRenderer(Settings::PDF_RENDERER_DOMPDF, $domPdfPath));
     $this->assertEquals(Settings::PDF_RENDERER_DOMPDF, Settings::getPdfRendererName());
     $this->assertEquals($domPdfPath, Settings::getPdfRendererPath());
     $this->assertFalse(Settings::setPdfRendererPath('dummy/path'));
 }
开发者ID:kaantunc,项目名称:MYK-BOR,代码行数:12,代码来源:SettingsTest.php

示例2: __construct

 /**
  * Create new instance
  *
  * @param PhpWord $phpWord PhpWord object
  */
 public function __construct(PhpWord $phpWord)
 {
     parent::__construct($phpWord);
     $configFile = Settings::getPdfRendererPath() . '/dompdf_config.inc.php';
     if (file_exists($configFile)) {
         require_once $configFile;
     } else {
         throw new Exception('Unable to load PDF Rendering library');
     }
 }
开发者ID:kaantunc,项目名称:MYK-BOR,代码行数:15,代码来源:DomPDF.php

示例3: __construct

 /**
  * Instantiate a new renderer of the configured type within this container class
  *
  * @param \PhpOffice\PhpWord\PhpWord $phpWord
  * @throws \PhpOffice\PhpWord\Exception\Exception
  */
 public function __construct(PhpWord $phpWord)
 {
     $pdfLibraryName = Settings::getPdfRendererName();
     $pdfLibraryPath = Settings::getPdfRendererPath();
     if (is_null($pdfLibraryName) || is_null($pdfLibraryPath)) {
         throw new Exception("PDF rendering library or library path has not been defined.");
     }
     $includePath = str_replace('\\', '/', get_include_path());
     $rendererPath = str_replace('\\', '/', $pdfLibraryPath);
     if (strpos($rendererPath, $includePath) === false) {
         set_include_path(get_include_path() . PATH_SEPARATOR . $pdfLibraryPath);
     }
     $rendererName = get_class($this) . '\\' . $pdfLibraryName;
     $this->renderer = new $rendererName($phpWord);
 }
开发者ID:hcvcastro,项目名称:pxp,代码行数:21,代码来源:PDF.php

示例4: array

 function __construct()
 {
     parent::__construct();
     Autoloader::register();
     Settings::loadConfig();
     Settings::setTempDir(getcwd() . TMPDIR_WORD);
     // Set writers
     $writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf', 'HTML' => 'html', 'PDF' => 'pdf');
     // Set PDF renderer
     if (Settings::getPdfRendererPath() === null) {
         $writers['PDF'] = null;
     }
     // Return to the caller script when runs by CLI
     if (PHP_SAPI == 'cli') {
         return;
     }
 }
开发者ID:nhatlang19,项目名称:elearningONL,代码行数:17,代码来源:Word.php

示例5: basename

 */
use PhpOffice\PhpWord\Autoloader;
use PhpOffice\PhpWord\Settings;
use PhpOffice\PhpWord\IOFactory;
error_reporting(E_ALL);
define('CLI', PHP_SAPI == 'cli' ? true : false);
define('EOL', CLI ? PHP_EOL : '<br />');
define('SCRIPT_FILENAME', basename($_SERVER['SCRIPT_FILENAME'], '.php'));
define('IS_INDEX', SCRIPT_FILENAME == 'index');
require_once __DIR__ . '/../src/PhpWord/Autoloader.php';
Autoloader::register();
Settings::loadConfig();
// Set writers
$writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf', 'HTML' => 'html', 'PDF' => 'pdf');
// Set PDF renderer
if (Settings::getPdfRendererPath() === null) {
    $writers['PDF'] = null;
}
// Return to the caller script when runs by CLI
if (CLI) {
    return;
}
// Set titles and names
$pageHeading = str_replace('_', ' ', SCRIPT_FILENAME);
$pageTitle = IS_INDEX ? 'Welcome to ' : "{$pageHeading} - ";
$pageTitle .= 'PHPWord';
$pageHeading = IS_INDEX ? '' : "<h1>{$pageHeading}</h1>";
// Populate samples
$files = '';
if ($handle = opendir('.')) {
    while (false !== ($file = readdir($handle))) {
开发者ID:hcvcastro,项目名称:pxp,代码行数:31,代码来源:Sample_Header.php

示例6: basename

/**
 * Header file
 */
use PhpOffice\PhpWord\Autoloader;
use PhpOffice\PhpWord\Settings;
error_reporting(E_ALL);
define('CLI', PHP_SAPI == 'cli' ? true : false);
define('EOL', CLI ? PHP_EOL : '<br />');
define('SCRIPT_FILENAME', basename($_SERVER['SCRIPT_FILENAME'], '.php'));
define('IS_INDEX', SCRIPT_FILENAME == 'index');
Autoloader::register();
Settings::loadConfig();
// Set writers
$writers = array('Word2007' => 'docx', 'ODText' => 'odt', 'RTF' => 'rtf', 'HTML' => 'html', 'PDF' => 'pdf');
// Set PDF renderer
if (null === Settings::getPdfRendererPath()) {
    $writers['PDF'] = null;
}
// Return to the caller script when runs by CLI
if (CLI) {
    return;
}
// Set titles and names
$pageHeading = str_replace('_', ' ', SCRIPT_FILENAME);
$pageTitle = IS_INDEX ? 'Welcome to ' : "{$pageHeading} - ";
$pageTitle .= 'PHPWord';
$pageHeading = IS_INDEX ? '' : "<h1>{$pageHeading}</h1>";
// Populate samples
$files = '';
if ($handle = opendir('.')) {
    while (false !== ($file = readdir($handle))) {
开发者ID:var23rav,项目名称:toword_by_PhpWord,代码行数:31,代码来源:Sample_Header+(copy).php

示例7: __construct

 /**
  * Create new instance
  *
  * @param PhpWord $phpWord PhpWord object
  * @throws \PhpOffice\PhpWord\Exception\Exception
  */
 public function __construct(PhpWord $phpWord)
 {
     parent::__construct($phpWord);
     $includeFile = Settings::getPdfRendererPath() . '/' . $this->includeFile;
     if (file_exists($includeFile)) {
         /** @noinspection PhpIncludeInspection Dynamic includes */
         require_once $includeFile;
     } else {
         // @codeCoverageIgnoreStart
         // Can't find any test case. Uncomment when found.
         throw new Exception('Unable to load PDF Rendering library');
         // @codeCoverageIgnoreEnd
     }
 }
开发者ID:hcvcastro,项目名称:pxp,代码行数:20,代码来源:AbstractRenderer.php


注:本文中的PhpOffice\PhpWord\Settings::getPdfRendererPath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。