12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508 |
- <?php
- /**
- * @package dompdf
- * @link http://dompdf.github.com/
- * @author Benj Carson <benjcarson@digitaljunkies.ca>
- * @author Fabien Ménager <fabien.menager@gmail.com>
- * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
- */
- namespace Dompdf;
- use DOMDocument;
- use DOMNode;
- use Dompdf\Adapter\CPDF;
- use DOMXPath;
- use Dompdf\Frame\Factory;
- use Dompdf\Frame\FrameTree;
- use HTML5_Tokenizer;
- use HTML5_TreeBuilder;
- use Dompdf\Image\Cache;
- use Dompdf\Renderer\ListBullet;
- use Dompdf\Css\Stylesheet;
- /**
- * Dompdf - PHP5 HTML to PDF renderer
- *
- * Dompdf loads HTML and does its best to render it as a PDF. It gets its
- * name from the new DomDocument PHP5 extension. Source HTML is first
- * parsed by a DomDocument object. Dompdf takes the resulting DOM tree and
- * attaches a {@link Frame} object to each node. {@link Frame} objects store
- * positioning and layout information and each has a reference to a {@link
- * Style} object.
- *
- * Style information is loaded and parsed (see {@link Stylesheet}) and is
- * applied to the frames in the tree by using XPath. CSS selectors are
- * converted into XPath queries, and the computed {@link Style} objects are
- * applied to the {@link Frame}s.
- *
- * {@link Frame}s are then decorated (in the design pattern sense of the
- * word) based on their CSS display property ({@link
- * http://www.w3.org/TR/CSS21/visuren.html#propdef-display}).
- * Frame_Decorators augment the basic {@link Frame} class by adding
- * additional properties and methods specific to the particular type of
- * {@link Frame}. For example, in the CSS layout model, block frames
- * (display: block;) contain line boxes that are usually filled with text or
- * other inline frames. The Block therefore adds a $lines
- * property as well as methods to add {@link Frame}s to lines and to add
- * additional lines. {@link Frame}s also are attached to specific
- * AbstractPositioner and {@link AbstractFrameReflower} objects that contain the
- * positioining and layout algorithm for a specific type of frame,
- * respectively. This is an application of the Strategy pattern.
- *
- * Layout, or reflow, proceeds recursively (post-order) starting at the root
- * of the document. Space constraints (containing block width & height) are
- * pushed down, and resolved positions and sizes bubble up. Thus, every
- * {@link Frame} in the document tree is traversed once (except for tables
- * which use a two-pass layout algorithm). If you are interested in the
- * details, see the reflow() method of the Reflower classes.
- *
- * Rendering is relatively straightforward once layout is complete. {@link
- * Frame}s are rendered using an adapted {@link Cpdf} class, originally
- * written by Wayne Munro, http://www.ros.co.nz/pdf/. (Some performance
- * related changes have been made to the original {@link Cpdf} class, and
- * the {@link Dompdf\Adapter\CPDF} class provides a simple, stateless interface to
- * PDF generation.) PDFLib support has now also been added, via the {@link
- * Dompdf\Adapter\PDFLib}.
- *
- *
- * @package dompdf
- */
- class Dompdf
- {
- /**
- * Version string for dompdf
- *
- * @var string
- */
- private $version = 'dompdf';
- /**
- * DomDocument representing the HTML document
- *
- * @var DOMDocument
- */
- private $dom;
- /**
- * FrameTree derived from the DOM tree
- *
- * @var FrameTree
- */
- private $tree;
- /**
- * Stylesheet for the document
- *
- * @var Stylesheet
- */
- private $css;
- /**
- * Actual PDF renderer
- *
- * @var Canvas
- */
- private $canvas;
- /**
- * Desired paper size ('letter', 'legal', 'A4', etc.)
- *
- * @var string
- */
- private $paperSize;
- /**
- * Paper orientation ('portrait' or 'landscape')
- *
- * @var string
- */
- private $paperOrientation = "portrait";
- /**
- * Callbacks on new page and new element
- *
- * @var array
- */
- private $callbacks = array();
- /**
- * Experimental caching capability
- *
- * @var string
- */
- private $cacheId;
- /**
- * Base hostname
- *
- * Used for relative paths/urls
- * @var string
- */
- private $baseHost = "";
- /**
- * Absolute base path
- *
- * Used for relative paths/urls
- * @var string
- */
- private $basePath = "";
- /**
- * Protcol used to request file (file://, http://, etc)
- *
- * @var string
- */
- private $protocol;
- /**
- * HTTP context created with stream_context_create()
- * Will be used for file_get_contents
- *
- * @var resource
- */
- private $httpContext;
- /**
- * Timestamp of the script start time
- *
- * @var int
- */
- private $startTime = null;
- /**
- * The system's locale
- *
- * @var string
- */
- private $systemLocale = null;
- /**
- * Tells if the system's locale is the C standard one
- *
- * @var bool
- */
- private $localeStandard = false;
- /**
- * The default view of the PDF in the viewer
- *
- * @var string
- */
- private $defaultView = "Fit";
- /**
- * The default view options of the PDF in the viewer
- *
- * @var array
- */
- private $defaultViewOptions = array();
- /**
- * Tells wether the DOM document is in quirksmode (experimental)
- *
- * @var bool
- */
- private $quirksmode = false;
- /**
- * Protocol whitelist
- *
- * Protocols and PHP wrappers allowed in URLs. Full support is not
- * guarantee for the protocols/wrappers contained in this array.
- *
- * @var array
- */
- private $allowedProtocols = array(null, "", "file://", "http://", "https://");
- /**
- * Local file extension whitelist
- *
- * File extensions supported by dompdf for local files.
- *
- * @var array
- */
- private $allowedLocalFileExtensions = array("htm", "html");
- /**
- * @var array
- */
- private $messages = array();
- /**
- * @var Options
- */
- private $options;
- /**
- * @var FontMetrics
- */
- private $fontMetrics;
- /**
- * The list of built-in fonts
- *
- * @var array
- * @deprecated
- */
- public static $native_fonts = array(
- "courier", "courier-bold", "courier-oblique", "courier-boldoblique",
- "helvetica", "helvetica-bold", "helvetica-oblique", "helvetica-boldoblique",
- "times-roman", "times-bold", "times-italic", "times-bolditalic",
- "symbol", "zapfdinbats"
- );
- /**
- * The list of built-in fonts
- *
- * @var array
- */
- public static $nativeFonts = array(
- "courier", "courier-bold", "courier-oblique", "courier-boldoblique",
- "helvetica", "helvetica-bold", "helvetica-oblique", "helvetica-boldoblique",
- "times-roman", "times-bold", "times-italic", "times-bolditalic",
- "symbol", "zapfdinbats"
- );
- /**
- * Class constructor
- *
- * @param array|Options $options
- */
- public function __construct($options = null)
- {
- mb_internal_encoding('UTF-8');
- if (isset($options) && $options instanceof Options) {
- $this->setOptions($options);
- } elseif (is_array($options)) {
- $this->setOptions(new Options($options));
- } else {
- $this->setOptions(new Options());
- }
- $versionFile = realpath(__DIR__ . '/../VERSION');
- if (file_exists($versionFile) && ($version = file_get_contents($versionFile)) !== false && $version !== '$Format:<%h>$') {
- $this->version = sprintf('dompdf %s', $version);
- }
- $this->localeStandard = sprintf('%.1f', 1.0) == '1.0';
- $this->saveLocale();
- $this->paperSize = $this->options->getDefaultPaperSize();
- $this->paperOrientation = $this->options->getDefaultPaperOrientation();
- $this->setCanvas(CanvasFactory::get_instance($this, $this->paperSize, $this->paperOrientation));
- $this->setFontMetrics(new FontMetrics($this->getCanvas(), $this->getOptions()));
- $this->css = new Stylesheet($this);
- $this->restoreLocale();
- }
- /**
- * Save the system's locale configuration and
- * set the right value for numeric formatting
- */
- private function saveLocale()
- {
- if ($this->localeStandard) {
- return;
- }
- $this->systemLocale = setlocale(LC_NUMERIC, "0");
- setlocale(LC_NUMERIC, "C");
- }
- /**
- * Restore the system's locale configuration
- */
- private function restoreLocale()
- {
- if ($this->localeStandard) {
- return;
- }
- setlocale(LC_NUMERIC, $this->systemLocale);
- }
- /**
- * @param $file
- * @deprecated
- */
- public function load_html_file($file)
- {
- $this->loadHtmlFile($file);
- }
- /**
- * Loads an HTML file
- * Parse errors are stored in the global array _dompdf_warnings.
- *
- * @param string $file a filename or url to load
- *
- * @throws Exception
- */
- public function loadHtmlFile($file)
- {
- $this->saveLocale();
- if (!$this->protocol && !$this->baseHost && !$this->basePath) {
- list($this->protocol, $this->baseHost, $this->basePath) = Helpers::explode_url($file);
- }
- $protocol = strtolower($this->protocol);
- if ( !in_array($protocol, $this->allowedProtocols) ) {
- throw new Exception("Permission denied on $file. The communication protocol is not supported.");
- }
- if (!$this->options->isRemoteEnabled() && ($protocol != "" && $protocol !== "file://")) {
- throw new Exception("Remote file requested, but remote file download is disabled.");
- }
- if ($protocol == "" || $protocol === "file://") {
- $realfile = realpath($file);
- $chroot = realpath($this->options->getChroot());
- if ($chroot && strpos($realfile, $chroot) !== 0) {
- throw new Exception("Permission denied on $file. The file could not be found under the directory specified by Options::chroot.");
- }
- $ext = strtolower(pathinfo($realfile, PATHINFO_EXTENSION));
- if (!in_array($ext, $this->allowedLocalFileExtensions)) {
- throw new Exception("Permission denied on $file.");
- }
- if (!$realfile) {
- throw new Exception("File '$file' not found.");
- }
- $file = $realfile;
- }
- list($contents, $http_response_header) = Helpers::getFileContent($file, $this->httpContext);
- $encoding = 'UTF-8';
- // See http://the-stickman.com/web-development/php/getting-http-response-headers-when-using-file_get_contents/
- if (isset($http_response_header)) {
- foreach ($http_response_header as $_header) {
- if (preg_match("@Content-Type:\s*[\w/]+;\s*?charset=([^\s]+)@i", $_header, $matches)) {
- $encoding = strtoupper($matches[1]);
- break;
- }
- }
- }
- $this->restoreLocale();
- $this->loadHtml($contents, $encoding);
- }
- /**
- * @param $str
- * @param null $encoding
- * @deprecated
- */
- public function load_html($str, $encoding = 'UTF-8')
- {
- $this->loadHtml($str, $encoding);
- }
- /**
- * Loads an HTML string
- * Parse errors are stored in the global array _dompdf_warnings.
- * @todo use the $encoding variable
- *
- * @param string $str HTML text to load
- * @param string $encoding Not used yet
- */
- public function loadHtml($str, $encoding = 'UTF-8')
- {
- $this->saveLocale();
- // FIXME: Determine character encoding, switch to UTF8, update meta tag. Need better http/file stream encoding detection, currently relies on text or meta tag.
- $known_encodings = mb_list_encodings();
- mb_detect_order('auto');
- if (($file_encoding = mb_detect_encoding($str, null, true)) === false) {
- $file_encoding = "auto";
- }
- if (in_array(strtoupper($file_encoding), array('UTF-8','UTF8')) === false) {
- $str = mb_convert_encoding($str, 'UTF-8', $file_encoding);
- }
- $metatags = array(
- '@<meta\s+http-equiv="Content-Type"\s+content="(?:[\w/]+)(?:;\s*?charset=([^\s"]+))?@i',
- '@<meta\s+content="(?:[\w/]+)(?:;\s*?charset=([^\s"]+))"?\s+http-equiv="Content-Type"@i',
- '@<meta [^>]*charset\s*=\s*["\']?\s*([^"\' ]+)@i',
- );
- foreach ($metatags as $metatag) {
- if (preg_match($metatag, $str, $matches)) {
- if (isset($matches[1]) && in_array($matches[1], $known_encodings)) {
- $document_encoding = $matches[1];
- break;
- }
- }
- }
- if (isset($document_encoding) && in_array(strtoupper($document_encoding), array('UTF-8','UTF8')) === false) {
- $str = preg_replace('/charset=([^\s"]+)/i', 'charset=UTF-8', $str);
- } elseif (isset($document_encoding) === false && strpos($str, '<head>') !== false) {
- $str = str_replace('<head>', '<head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">', $str);
- } elseif (isset($document_encoding) === false) {
- $str = '<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">' . $str;
- }
- //FIXME: since we're not using this just yet
- $encoding = 'UTF-8';
- // remove BOM mark from UTF-8, it's treated as document text by DOMDocument
- // FIXME: roll this into the encoding detection using UTF-8/16/32 BOM (http://us2.php.net/manual/en/function.mb-detect-encoding.php#91051)?
- if (substr($str, 0, 3) == chr(0xEF) . chr(0xBB) . chr(0xBF)) {
- $str = substr($str, 3);
- }
- // Store parsing warnings as messages
- set_error_handler(array("\\Dompdf\\Helpers", "record_warnings"));
- // @todo Take the quirksmode into account
- // http://hsivonen.iki.fi/doctype/
- // https://developer.mozilla.org/en/mozilla's_quirks_mode
- $quirksmode = false;
- if ($this->options->isHtml5ParserEnabled()) {
- $tokenizer = new HTML5_Tokenizer($str);
- $tokenizer->parse();
- $doc = $tokenizer->save();
- // Remove #text children nodes in nodes that shouldn't have
- $tag_names = array("html", "table", "tbody", "thead", "tfoot", "tr");
- foreach ($tag_names as $tag_name) {
- $nodes = $doc->getElementsByTagName($tag_name);
- foreach ($nodes as $node) {
- self::removeTextNodes($node);
- }
- }
- $quirksmode = ($tokenizer->getTree()->getQuirksMode() > HTML5_TreeBuilder::NO_QUIRKS);
- } else {
- // loadHTML assumes ISO-8859-1 unless otherwise specified on the HTML document header.
- // http://devzone.zend.com/1538/php-dom-xml-extension-encoding-processing/ (see #4)
- // http://stackoverflow.com/a/11310258/264628
- $doc = new DOMDocument("1.0", $encoding);
- $doc->preserveWhiteSpace = true;
- $doc->loadHTML($str);
- $doc->encoding = $encoding;
- // If some text is before the doctype, we are in quirksmode
- if (preg_match("/^(.+)<!doctype/i", ltrim($str), $matches)) {
- $quirksmode = true;
- } // If no doctype is provided, we are in quirksmode
- elseif (!preg_match("/^<!doctype/i", ltrim($str), $matches)) {
- $quirksmode = true;
- } else {
- // HTML5 <!DOCTYPE html>
- if (!$doc->doctype->publicId && !$doc->doctype->systemId) {
- $quirksmode = false;
- }
- // not XHTML
- if (!preg_match("/xhtml/i", $doc->doctype->publicId)) {
- $quirksmode = true;
- }
- }
- }
- $this->dom = $doc;
- $this->quirksmode = $quirksmode;
- $this->tree = new FrameTree($this->dom);
- restore_error_handler();
- $this->restoreLocale();
- }
- /**
- * @param DOMNode $node
- * @deprecated
- */
- public static function remove_text_nodes(DOMNode $node)
- {
- self::removeTextNodes($node);
- }
- /**
- * @param DOMNode $node
- */
- public static function removeTextNodes(DOMNode $node)
- {
- $children = array();
- for ($i = 0; $i < $node->childNodes->length; $i++) {
- $child = $node->childNodes->item($i);
- if ($child->nodeName === "#text") {
- $children[] = $child;
- }
- }
- foreach ($children as $child) {
- $node->removeChild($child);
- }
- }
- /**
- * Builds the {@link FrameTree}, loads any CSS and applies the styles to
- * the {@link FrameTree}
- */
- private function processHtml()
- {
- $this->tree->build_tree();
- $this->css->load_css_file(Stylesheet::getDefaultStylesheet(), Stylesheet::ORIG_UA);
- $acceptedmedia = Stylesheet::$ACCEPTED_GENERIC_MEDIA_TYPES;
- $acceptedmedia[] = $this->options->getDefaultMediaType();
- // <base href="" />
- $base_nodes = $this->dom->getElementsByTagName("base");
- if ($base_nodes->length && ($href = $base_nodes->item(0)->getAttribute("href"))) {
- list($this->protocol, $this->baseHost, $this->basePath) = Helpers::explode_url($href);
- }
- // Set the base path of the Stylesheet to that of the file being processed
- $this->css->set_protocol($this->protocol);
- $this->css->set_host($this->baseHost);
- $this->css->set_base_path($this->basePath);
- // Get all the stylesheets so that they are processed in document order
- $xpath = new DOMXPath($this->dom);
- $stylesheets = $xpath->query("//*[name() = 'link' or name() = 'style']");
- /** @var \DOMElement $tag */
- foreach ($stylesheets as $tag) {
- switch (strtolower($tag->nodeName)) {
- // load <link rel="STYLESHEET" ... /> tags
- case "link":
- if (mb_strtolower(stripos($tag->getAttribute("rel"), "stylesheet") !== false) || // may be "appendix stylesheet"
- mb_strtolower($tag->getAttribute("type")) === "text/css"
- ) {
- //Check if the css file is for an accepted media type
- //media not given then always valid
- $formedialist = preg_split("/[\s\n,]/", $tag->getAttribute("media"), -1, PREG_SPLIT_NO_EMPTY);
- if (count($formedialist) > 0) {
- $accept = false;
- foreach ($formedialist as $type) {
- if (in_array(mb_strtolower(trim($type)), $acceptedmedia)) {
- $accept = true;
- break;
- }
- }
- if (!$accept) {
- //found at least one mediatype, but none of the accepted ones
- //Skip this css file.
- continue;
- }
- }
- $url = $tag->getAttribute("href");
- $url = Helpers::build_url($this->protocol, $this->baseHost, $this->basePath, $url);
- $this->css->load_css_file($url, Stylesheet::ORIG_AUTHOR);
- }
- break;
- // load <style> tags
- case "style":
- // Accept all <style> tags by default (note this is contrary to W3C
- // HTML 4.0 spec:
- // http://www.w3.org/TR/REC-html40/present/styles.html#adef-media
- // which states that the default media type is 'screen'
- if ($tag->hasAttributes() &&
- ($media = $tag->getAttribute("media")) &&
- !in_array($media, $acceptedmedia)
- ) {
- continue;
- }
- $css = "";
- if ($tag->hasChildNodes()) {
- $child = $tag->firstChild;
- while ($child) {
- $css .= $child->nodeValue; // Handle <style><!-- blah --></style>
- $child = $child->nextSibling;
- }
- } else {
- $css = $tag->nodeValue;
- }
- $this->css->load_css($css, Stylesheet::ORIG_AUTHOR);
- break;
- }
- }
- }
- /**
- * @param string $cacheId
- * @deprecated
- */
- public function enable_caching($cacheId)
- {
- $this->enableCaching($cacheId);
- }
- /**
- * Enable experimental caching capability
- *
- * @param string $cacheId
- */
- public function enableCaching($cacheId)
- {
- $this->cacheId = $cacheId;
- }
- /**
- * @param string $value
- * @return bool
- * @deprecated
- */
- public function parse_default_view($value)
- {
- return $this->parseDefaultView($value);
- }
- /**
- * @param string $value
- * @return bool
- */
- public function parseDefaultView($value)
- {
- $valid = array("XYZ", "Fit", "FitH", "FitV", "FitR", "FitB", "FitBH", "FitBV");
- $options = preg_split("/\s*,\s*/", trim($value));
- $defaultView = array_shift($options);
- if (!in_array($defaultView, $valid)) {
- return false;
- }
- $this->setDefaultView($defaultView, $options);
- return true;
- }
- /**
- * Renders the HTML to PDF
- */
- public function render()
- {
- $this->saveLocale();
- $options = $this->options;
- $logOutputFile = $options->getLogOutputFile();
- if ($logOutputFile) {
- if (!file_exists($logOutputFile) && is_writable(dirname($logOutputFile))) {
- touch($logOutputFile);
- }
- $this->startTime = microtime(true);
- if (is_writable($logOutputFile)) {
- ob_start();
- }
- }
- $this->processHtml();
- $this->css->apply_styles($this->tree);
- // @page style rules : size, margins
- $pageStyles = $this->css->get_page_styles();
- $basePageStyle = $pageStyles["base"];
- unset($pageStyles["base"]);
- foreach ($pageStyles as $pageStyle) {
- $pageStyle->inherit($basePageStyle);
- }
- $defaultOptionPaperSize = $this->getPaperSize($options->getDefaultPaperSize());
- // If there is a CSS defined paper size compare to the paper size used to create the canvas to determine a
- // recreation need
- if (is_array($basePageStyle->size)) {
- $basePageStyleSize = $basePageStyle->size;
- $this->setPaper(array(0, 0, $basePageStyleSize[0], $basePageStyleSize[1]));
- }
- $paperSize = $this->getPaperSize();
- if (
- $defaultOptionPaperSize[2] !== $paperSize[2] ||
- $defaultOptionPaperSize[3] !== $paperSize[3] ||
- $options->getDefaultPaperOrientation() !== $this->paperOrientation
- ) {
- $this->setCanvas(CanvasFactory::get_instance($this, $this->paperSize, $this->paperOrientation));
- $this->fontMetrics->setCanvas($this->getCanvas());
- }
- $canvas = $this->getCanvas();
- if ($options->isFontSubsettingEnabled() && $canvas instanceof CPDF) {
- foreach ($this->tree->get_frames() as $frame) {
- $style = $frame->get_style();
- $node = $frame->get_node();
- // Handle text nodes
- if ($node->nodeName === "#text") {
- $chars = mb_strtoupper($node->nodeValue) . mb_strtolower($node->nodeValue);
- $canvas->register_string_subset($style->font_family, $chars);
- continue;
- }
- // Handle generated content (list items)
- if ($style->display === "list-item") {
- $chars = ListBullet::get_counter_chars($style->list_style_type);
- $canvas->register_string_subset($style->font_family, $chars);
- continue;
- }
- // Handle other generated content (pseudo elements)
- // FIXME: This only captures the text of the stylesheet declaration,
- // not the actual generated content, and forces all possible counter
- // values. See notes in issue #750.
- if ($frame->get_node()->nodeName == "dompdf_generated") {
- // all possible counter values, just in case
- $chars = ListBullet::get_counter_chars('decimal');
- $canvas->register_string_subset($style->font_family, $chars);
- $chars = ListBullet::get_counter_chars('upper-alpha');
- $canvas->register_string_subset($style->font_family, $chars);
- $chars = ListBullet::get_counter_chars('lower-alpha');
- $canvas->register_string_subset($style->font_family, $chars);
- $chars = ListBullet::get_counter_chars('lower-greek');
- $canvas->register_string_subset($style->font_family, $chars);
- // the hex-decoded text of the content property, duplicated from AbstrctFrameReflower::_parse_string
- $decoded_string = preg_replace_callback("/\\\\([0-9a-fA-F]{0,6})/",
- function ($matches) { return \Dompdf\Helpers::unichr(hexdec($matches[1])); },
- $style->content);
- $chars = mb_strtoupper($style->content) . mb_strtolower($style->content) . mb_strtoupper($decoded_string) . mb_strtolower($decoded_string);
- $canvas->register_string_subset($style->font_family, $chars);
- continue;
- }
- }
- }
- $root = null;
- foreach ($this->tree->get_frames() as $frame) {
- // Set up the root frame
- if (is_null($root)) {
- $root = Factory::decorate_root($this->tree->get_root(), $this);
- continue;
- }
- // Create the appropriate decorators, reflowers & positioners.
- Factory::decorate_frame($frame, $this, $root);
- }
- // Add meta information
- $title = $this->dom->getElementsByTagName("title");
- if ($title->length) {
- $canvas->add_info("Title", trim($title->item(0)->nodeValue));
- }
- $metas = $this->dom->getElementsByTagName("meta");
- $labels = array(
- "author" => "Author",
- "keywords" => "Keywords",
- "description" => "Subject",
- );
- /** @var \DOMElement $meta */
- foreach ($metas as $meta) {
- $name = mb_strtolower($meta->getAttribute("name"));
- $value = trim($meta->getAttribute("content"));
- if (isset($labels[$name])) {
- $canvas->add_info($labels[$name], $value);
- continue;
- }
- if ($name === "dompdf.view" && $this->parseDefaultView($value)) {
- $canvas->set_default_view($this->defaultView, $this->defaultViewOptions);
- }
- }
- $root->set_containing_block(0, 0,$canvas->get_width(), $canvas->get_height());
- $root->set_renderer(new Renderer($this));
- // This is where the magic happens:
- $root->reflow();
- // Clean up cached images
- Cache::clear();
- global $_dompdf_warnings, $_dompdf_show_warnings;
- if ($_dompdf_show_warnings && isset($_dompdf_warnings)) {
- echo '<b>Dompdf Warnings</b><br><pre>';
- foreach ($_dompdf_warnings as $msg) {
- echo $msg . "\n";
- }
- if ($canvas instanceof CPDF) {
- echo $canvas->get_cpdf()->messages;
- }
- echo '</pre>';
- flush();
- }
- if ($logOutputFile && is_writable($logOutputFile)) {
- $this->write_log();
- ob_end_clean();
- }
- $this->restoreLocale();
- }
- /**
- * Add meta information to the PDF after rendering
- */
- public function add_info($label, $value)
- {
- $canvas = $this->getCanvas();
- if (!is_null($canvas)) {
- $canvas->add_info($label, $value);
- }
- }
- /**
- * Writes the output buffer in the log file
- *
- * @return void
- */
- private function write_log()
- {
- $log_output_file = $this->getOptions()->getLogOutputFile();
- if (!$log_output_file || !is_writable($log_output_file)) {
- return;
- }
- $frames = Frame::$ID_COUNTER;
- $memory = memory_get_peak_usage(true) / 1024;
- $time = (microtime(true) - $this->startTime) * 1000;
- $out = sprintf(
- "<span style='color: #000' title='Frames'>%6d</span>" .
- "<span style='color: #009' title='Memory'>%10.2f KB</span>" .
- "<span style='color: #900' title='Time'>%10.2f ms</span>" .
- "<span title='Quirksmode'> " .
- ($this->quirksmode ? "<span style='color: #d00'> ON</span>" : "<span style='color: #0d0'>OFF</span>") .
- "</span><br />", $frames, $memory, $time);
- $out .= ob_get_contents();
- ob_clean();
- file_put_contents($log_output_file, $out);
- }
- /**
- * Streams the PDF to the client
- *
- * The file will open a download dialog by default. The options
- * parameter controls the output. Accepted options (array keys) are:
- *
- * 'Accept-Ranges' => 1 or 0 (=default): Send an 'Accept-Ranges:'
- * HTTP header, see https://tools.ietf.org/html/rfc2616#section-14.5
- * This header seems to have caused some problems, despite the fact
- * that it is supposed to solve them, so I am leaving it off by default.
- *
- * 'compress' = > 1 (=default) or 0:
- * Apply content stream compression
- *
- * 'Attachment' => 1 (=default) or 0:
- * Set the 'Content-Disposition:' HTTP header to 'attachment'
- * (thereby causing the browser to open a download dialog)
- *
- * @param string $filename the name of the streamed file
- * @param array $options header options (see above)
- */
- public function stream($filename = 'document.pdf', $options = null)
- {
- $this->saveLocale();
- $canvas = $this->getCanvas();
- if (!is_null($canvas)) {
- $canvas->stream($filename, $options);
- }
- $this->restoreLocale();
- }
- /**
- * Returns the PDF as a string
- *
- * The file will open a download dialog by default. The options
- * parameter controls the output. Accepted options are:
- *
- *
- * 'compress' = > 1 or 0 - apply content stream compression, this is
- * on (1) by default
- *
- *
- * @param array $options options (see above)
- *
- * @return string
- */
- public function output($options = null)
- {
- $this->saveLocale();
- $canvas = $this->getCanvas();
- if (is_null($canvas)) {
- return null;
- }
- $output = $canvas->output($options);
- $this->restoreLocale();
- return $output;
- }
- /**
- * @return string
- * @deprecated
- */
- public function output_html()
- {
- return $this->outputHtml();
- }
- /**
- * Returns the underlying HTML document as a string
- *
- * @return string
- */
- public function outputHtml()
- {
- return $this->dom->saveHTML();
- }
- /**
- * Get the dompdf option value
- *
- * @param string $key
- * @return mixed
- * @deprecated
- */
- public function get_option($key)
- {
- return $this->options->get($key);
- }
- /**
- * @param string $key
- * @param mixed $value
- * @return $this
- * @deprecated
- */
- public function set_option($key, $value)
- {
- $this->options->set($key, $value);
- return $this;
- }
- /**
- * @param array $options
- * @return $this
- * @deprecated
- */
- public function set_options(array $options)
- {
- $this->options->set($options);
- return $this;
- }
- /**
- * @param string $size
- * @param string $orientation
- * @deprecated
- */
- public function set_paper($size, $orientation = "portrait")
- {
- $this->setPaper($size, $orientation);
- }
- /**
- * Sets the paper size & orientation
- *
- * @param string $size 'letter', 'legal', 'A4', etc. {@link Dompdf\Adapter\CPDF::$PAPER_SIZES}
- * @param string $orientation 'portrait' or 'landscape'
- * @return $this
- */
- public function setPaper($size, $orientation = "portrait")
- {
- $this->paperSize = $size;
- $this->paperOrientation = $orientation;
- return $this;
- }
- /**
- * Gets the paper size
- *
- * @param null|string|array $paperSize
- * @return \int[] A four-element integer array
- */
- public function getPaperSize($paperSize = null)
- {
- $size = $paperSize !== null ? $paperSize : $this->paperSize;
- if (is_array($size)) {
- return $size;
- } else if (isset(Adapter\CPDF::$PAPER_SIZES[mb_strtolower($size)])) {
- return Adapter\CPDF::$PAPER_SIZES[mb_strtolower($size)];
- } else {
- return Adapter\CPDF::$PAPER_SIZES["letter"];
- }
- }
- /**
- * Gets the paper orientation
- *
- * @return string Either "portrait" or "landscape"
- */
- public function getPaperOrientation()
- {
- return $this->paperOrientation;
- }
- /**
- * @param FrameTree $tree
- * @return $this
- */
- public function setTree(FrameTree $tree)
- {
- $this->tree = $tree;
- return $this;
- }
- /**
- * @return FrameTree
- * @deprecated
- */
- public function get_tree()
- {
- return $this->getTree();
- }
- /**
- * Returns the underlying {@link FrameTree} object
- *
- * @return FrameTree
- */
- public function getTree()
- {
- return $this->tree;
- }
- /**
- * @param string $protocol
- * @return $this
- * @deprecated
- */
- public function set_protocol($protocol)
- {
- return $this->setProtocol($protocol);
- }
- /**
- * Sets the protocol to use
- * FIXME validate these
- *
- * @param string $protocol
- * @return $this
- */
- public function setProtocol($protocol)
- {
- $this->protocol = $protocol;
- return $this;
- }
- /**
- * @return string
- * @deprecated
- */
- public function get_protocol()
- {
- return $this->getProtocol();
- }
- /**
- * Returns the protocol in use
- *
- * @return string
- */
- public function getProtocol()
- {
- return $this->protocol;
- }
- /**
- * @param string $host
- * @deprecated
- */
- public function set_host($host)
- {
- $this->setBaseHost($host);
- }
- /**
- * Sets the base hostname
- *
- * @param string $baseHost
- * @return $this
- */
- public function setBaseHost($baseHost)
- {
- $this->baseHost = $baseHost;
- return $this;
- }
- /**
- * @return string
- * @deprecated
- */
- public function get_host()
- {
- return $this->getBaseHost();
- }
- /**
- * Returns the base hostname
- *
- * @return string
- */
- public function getBaseHost()
- {
- return $this->baseHost;
- }
- /**
- * Sets the base path
- *
- * @param string $path
- * @deprecated
- */
- public function set_base_path($path)
- {
- $this->setBasePath($path);
- }
- /**
- * Sets the base path
- *
- * @param string $basePath
- * @return $this
- */
- public function setBasePath($basePath)
- {
- $this->basePath = $basePath;
- return $this;
- }
- /**
- * @return string
- * @deprecated
- */
- public function get_base_path()
- {
- return $this->getBasePath();
- }
- /**
- * Returns the base path
- *
- * @return string
- */
- public function getBasePath()
- {
- return $this->basePath;
- }
- /**
- * @param string $default_view The default document view
- * @param array $options The view's options
- * @return $this
- * @deprecated
- */
- public function set_default_view($default_view, $options)
- {
- return $this->setDefaultView($default_view, $options);
- }
- /**
- * Sets the default view
- *
- * @param string $defaultView The default document view
- * @param array $options The view's options
- * @return $this
- */
- public function setDefaultView($defaultView, $options)
- {
- $this->defaultView = $defaultView;
- $this->defaultViewOptions = $options;
- return $this;
- }
- /**
- * @param resource $http_context
- * @return $this
- * @deprecated
- */
- public function set_http_context($http_context)
- {
- return $this->setHttpContext($http_context);
- }
- /**
- * Sets the HTTP context
- *
- * @param resource $httpContext
- * @return $this
- */
- public function setHttpContext($httpContext)
- {
- $this->httpContext = $httpContext;
- return $this;
- }
- /**
- * @return resource
- * @deprecated
- */
- public function get_http_context()
- {
- return $this->getHttpContext();
- }
- /**
- * Returns the HTTP context
- *
- * @return resource
- */
- public function getHttpContext()
- {
- return $this->httpContext;
- }
- /**
- * @param Canvas $canvas
- * @return $this
- */
- public function setCanvas(Canvas $canvas)
- {
- $this->canvas = $canvas;
- return $this;
- }
- /**
- * @return Canvas
- * @deprecated
- */
- public function get_canvas()
- {
- return $this->getCanvas();
- }
- /**
- * Return the underlying Canvas instance (e.g. Dompdf\Adapter\CPDF, Dompdf\Adapter\GD)
- *
- * @return Canvas
- */
- public function getCanvas()
- {
- return $this->canvas;
- }
- /**
- * @param Stylesheet $css
- * @return $this
- */
- public function setCss(Stylesheet $css)
- {
- $this->css = $css;
- return $this;
- }
- /**
- * @return Stylesheet
- * @deprecated
- */
- public function get_css()
- {
- return $this->getCss();
- }
- /**
- * Returns the stylesheet
- *
- * @return Stylesheet
- */
- public function getCss()
- {
- return $this->css;
- }
- /**
- * @param DOMDocument $dom
- * @return $this
- */
- public function setDom(DOMDocument $dom)
- {
- $this->dom = $dom;
- return $this;
- }
- /**
- * @return DOMDocument
- * @deprecated
- */
- public function get_dom()
- {
- return $this->getDom();
- }
- /**
- * @return DOMDocument
- */
- public function getDom()
- {
- return $this->dom;
- }
- /**
- * @param Options $options
- * @return $this
- */
- public function setOptions(Options $options)
- {
- $this->options = $options;
- $fontMetrics = $this->getFontMetrics();
- if (isset($fontMetrics)) {
- $fontMetrics->setOptions($options);
- }
- return $this;
- }
- /**
- * @return Options
- */
- public function getOptions()
- {
- return $this->options;
- }
- /**
- * @return array
- * @deprecated
- */
- public function get_callbacks()
- {
- return $this->getCallbacks();
- }
- /**
- * Returns the callbacks array
- *
- * @return array
- */
- public function getCallbacks()
- {
- return $this->callbacks;
- }
- /**
- * @param array $callbacks the set of callbacks to set
- * @deprecated
- */
- public function set_callbacks($callbacks)
- {
- $this->setCallbacks($callbacks);
- }
- /**
- * Sets callbacks for events like rendering of pages and elements.
- * The callbacks array contains arrays with 'event' set to 'begin_page',
- * 'end_page', 'begin_frame', or 'end_frame' and 'f' set to a function or
- * object plus method to be called.
- *
- * The function 'f' must take an array as argument, which contains info
- * about the event.
- *
- * @param array $callbacks the set of callbacks to set
- */
- public function setCallbacks($callbacks)
- {
- if (is_array($callbacks)) {
- $this->callbacks = array();
- foreach ($callbacks as $c) {
- if (is_array($c) && isset($c['event']) && isset($c['f'])) {
- $event = $c['event'];
- $f = $c['f'];
- if (is_callable($f) && is_string($event)) {
- $this->callbacks[$event][] = $f;
- }
- }
- }
- }
- }
- /**
- * @return boolean
- * @deprecated
- */
- public function get_quirksmode()
- {
- return $this->getQuirksmode();
- }
- /**
- * Get the quirks mode
- *
- * @return boolean true if quirks mode is active
- */
- public function getQuirksmode()
- {
- return $this->quirksmode;
- }
- /**
- * @param FontMetrics $fontMetrics
- * @return $this
- */
- public function setFontMetrics(FontMetrics $fontMetrics)
- {
- $this->fontMetrics = $fontMetrics;
- return $this;
- }
- /**
- * @return FontMetrics
- */
- public function getFontMetrics()
- {
- return $this->fontMetrics;
- }
- /**
- * PHP5 overloaded getter
- * Along with {@link Dompdf::__set()} __get() provides access to all
- * properties directly. Typically __get() is not called directly outside
- * of this class.
- *
- * @param string $prop
- *
- * @throws Exception
- * @return mixed
- */
- function __get($prop)
- {
- switch ($prop)
- {
- case 'version' :
- return $this->version;
- default:
- throw new Exception( 'Invalid property: ' . $prop );
- }
- }
- }
|