Home
last modified time | relevance | path

Searched refs:dompdf (Results 1 – 25 of 50) sorted by relevance

12

/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/FrameDecorator/
H A DImage.php42 … * @param DOMPDF $dompdf the document's dompdf object (required to resolve relative & remote urls)
44 function __construct(Frame $frame, Dompdf $dompdf) argument
46 parent::__construct($frame, $dompdf);
49 $debug_png = $dompdf->getOptions()->getDebugPng();
56 $dompdf->getProtocol(),
57 $dompdf->getBaseHost(),
58 $dompdf->getBasePath(),
59 $dompdf
66 …$style->width = (4 / 3) * $dompdf->getFontMetrics()->getTextWidth($alt, $style->font_family, $styl…
67 … $style->height = $dompdf->getFontMetrics()->getFontHeight($style->font_family, $style->font_size);
H A DListBulletImage.php48 * @param Dompdf $dompdf the document's dompdf object
50 function __construct(Frame $frame, Dompdf $dompdf) argument
55 $this->_img = new Image($frame, $dompdf);
56 parent::__construct($this->_img, $dompdf);
57 …list($width, $height) = Helpers::dompdf_getimagesize($this->_img->get_image_url(), $dompdf->getHtt…
H A DNullFrameDecorator.php23 * @param Dompdf $dompdf
25 function __construct(Frame $frame, Dompdf $dompdf) argument
27 parent::__construct($frame, $dompdf);
H A DListBullet.php33 * @param Dompdf $dompdf
35 function __construct(Frame $frame, Dompdf $dompdf) argument
37 parent::__construct($frame, $dompdf);
H A DTableRowGroup.php27 * @param Dompdf $dompdf Current dompdf instance
29 function __construct(Frame $frame, Dompdf $dompdf) argument
31 parent::__construct($frame, $dompdf);
H A DTableRow.php24 * @param Dompdf $dompdf
26 function __construct(Frame $frame, Dompdf $dompdf) argument
28 parent::__construct($frame, $dompdf);
H A DTableCell.php30 * @param Dompdf $dompdf
32 function __construct(Frame $frame, Dompdf $dompdf) argument
34 parent::__construct($frame, $dompdf);
H A DInline.php28 * @param Dompdf $dompdf
30 function __construct(Frame $frame, Dompdf $dompdf) argument
32 parent::__construct($frame, $dompdf);
H A DText.php31 * @param Dompdf $dompdf
34 function __construct(Frame $frame, Dompdf $dompdf) argument
40 parent::__construct($frame, $dompdf);
H A DBlock.php39 * @param Dompdf $dompdf
41 function __construct(Frame $frame, Dompdf $dompdf) argument
43 parent::__construct($frame, $dompdf);
H A DTable.php82 * @param Dompdf $dompdf
84 public function __construct(Frame $frame, Dompdf $dompdf) argument
86 parent::__construct($frame, $dompdf);
H A DPage.php66 * @param Dompdf $dompdf
68 function __construct(Frame $frame, Dompdf $dompdf) argument
70 parent::__construct($frame, $dompdf);
H A DAbstractFrameDecorator.php96 * @param Dompdf $dompdf The Dompdf object
98 function __construct(Frame $frame, Dompdf $dompdf) argument
102 $this->_dompdf = $dompdf;
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/Frame/
H A DFactory.php49 static function decorate_root(Frame $root, Dompdf $dompdf) argument
51 $frame = new PageFrameDecorator($root, $dompdf);
62 * @param Dompdf $dompdf The dompdf instance
69 static function decorate_frame(Frame $frame, Dompdf $dompdf, Frame $root = null) argument
71 if (is_null($dompdf)) {
223 $deco = new $decorator($frame, $dompdf);
226 $deco->set_reflower(new $reflower($deco, $dompdf->getFontMetrics()));
234 $xml = $dompdf->getDom();
262 $new_style = $dompdf->getCss()->create_style();
267 $deco->prepend_child(Factory::decorate_frame($b_f, $dompdf, $root));
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/Image/
H A DCache.php55 * @param Dompdf $dompdf The Dompdf instance
60 static function resolve_url($url, $protocol, $host, $base_path, Dompdf $dompdf) argument
62 self::$_dompdf = $dompdf;
72 $enable_remote = $dompdf->getOptions()->getIsRemoteEnabled();
90 $tmp_dir = $dompdf->getOptions()->getTempDir();
99 …ist($image, $http_response_header) = Helpers::getFileContent($full_url, $dompdf->getHttpContext());
127 …list($width, $height, $type) = Helpers::dompdf_getimagesize($resolved_url, $dompdf->getHttpContext…
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/
H A DSOURCE11 curl -LsS https://github.com/dompdf/dompdf/archive/v"$DOMPDF_VERSION".tar.gz -o /tmp/dompdf.tar.gz
12 tar xf /tmp/dompdf.tar.gz --strip-components 1 dompdf-"$DOMPDF_VERSION"/{lib,src,LICENSE.LGPL}
13 rm /tmp/dompdf.tar.gz
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/
H A DCanvasFactory.php28 * @param Dompdf $dompdf
35 static function get_instance(Dompdf $dompdf, $paper = null, $orientation = null, $class = null) argument
37 $backend = strtolower($dompdf->getOptions()->getPdfBackend());
57 return new $class($paper, $orientation, $dompdf);
H A DJavascriptEmbedder.php26 * @param Dompdf $dompdf
28 public function __construct(Dompdf $dompdf) argument
30 $this->_dompdf = $dompdf;
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/Icinga/File/
H A DPdf.php90 $dompdf = new Dompdf($options);
91 $dompdf->loadHtml($html);
92 $dompdf->render();
93 $dompdf->stream(
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/lib/res/
H A Dhtml.css2 * dompdf default stylesheet.
4 * @package dompdf
5 * @link http://dompdf.github.com/
25 display: -dompdf-page !important;
314 display: -dompdf-list-bullet !important;
315 content: counter(-dompdf-default-counter) ". ";
505 display: -dompdf-br;
509 display: -dompdf-image !important;
520 -dompdf-keep: yes;
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/FrameReflower/
H A DPage.php183 $dompdf = $this->_frame->get_dompdf();
184 $this->_callbacks = $dompdf->get_callbacks();
185 $this->_canvas = $dompdf->get_canvas();
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/Adapter/
H A DCPDF.php180 * @param Dompdf $dompdf The Dompdf instance
182 public function __construct($paper = "letter", $orientation = "portrait", Dompdf $dompdf) argument
196 $this->_dompdf = $dompdf;
201 $dompdf->getOptions()->getFontCache(),
202 $dompdf->getOptions()->getTempDir()
205 $this->_pdf->addInfo("Producer", sprintf("%s + CPDF", $dompdf->version));
/dports/www/kohana/kohana-v3.3.6/system/guide/kohana/
H A Dfiles.md73 …aringfireball.net/projects/markdown/), [DOMPDF](http://code.google.com/p/dompdf), [Mustache](http…
75 …wanted to use [DOMPDF](http://code.google.com/p/dompdf), you would copy it to `application/vendor/
77 require Kohana::find_file('vendor', 'dompdf/dompdf/dompdf_config','inc');
/dports/devel/allegro5/allegro5-5.2.7.0/tests/
H A Dmanual_bmpsuite3.ini3 # http://pxd.me/dompdf/www/test/image_bmp.html
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/dompdf/src/Renderer/
H A DAbstractRenderer.php45 * @param Dompdf $dompdf The current dompdf instance
47 function __construct(Dompdf $dompdf) argument
49 $this->_dompdf = $dompdf;
50 $this->_canvas = $dompdf->getCanvas();

12