Home
last modified time | relevance | path

Searched refs:img_dpi (Results 1 – 6 of 6) sorted by relevance

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DInput.php223 $w = ($info['w'] * (25.4 / $this->mpdf->img_dpi));
224 $h = ($info['h'] * (25.4 / $this->mpdf->img_dpi));
250 $w = ($info['w'] / Mpdf::SCALE) * (72 / $this->mpdf->img_dpi);
251 $h = ($info['h'] / Mpdf::SCALE) * (72 / $this->mpdf->img_dpi);
256 $w *= $this->mpdf->img_dpi / $info['set-dpi'];
257 $h *= $this->mpdf->img_dpi / $info['set-dpi'];
261 $w *= $this->mpdf->img_dpi / $dpi;
262 $h *= $this->mpdf->img_dpi / $dpi;
H A DImg.php282 $w = ($info['w'] * (25.4 / $this->mpdf->img_dpi));
283 $h = ($info['h'] * (25.4 / $this->mpdf->img_dpi));
322 $w = ($info['w'] / Mpdf::SCALE) * (72 / $this->mpdf->img_dpi);
323 $h = ($info['h'] / Mpdf::SCALE) * (72 / $this->mpdf->img_dpi);
328 $w *= $this->mpdf->img_dpi / $info['set-dpi'];
329 $h *= $this->mpdf->img_dpi / $info['set-dpi'];
333 $w *= $this->mpdf->img_dpi / $dpi;
334 $h *= $this->mpdf->img_dpi / $dpi;
H A DMeter.php237 $w = ($info['w'] * (25.4 / $this->mpdf->img_dpi));
238 $h = ($info['h'] * (25.4 / $this->mpdf->img_dpi));
/plugin/siteexport/inc/
H A Dpdfgenerator.php54 $mpdf->img_dpi = $INPUT->int('dpi', 96, true);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php184 var $img_dpi;
2189 $orig_h = $sizesarray['HEIGHT'] * Mpdf::SCALE; // (using $this->img_dpi)
2192 $orig_w *= $this->img_dpi / $sizesarray['set-dpi'];
2193 $orig_h *= $this->img_dpi / $sizesarray['set-dpi'];
2197 $orig_w *= $this->img_dpi / $dpi;
2198 $orig_h *= $this->img_dpi / $dpi;
8850 $w = ($info['w'] * (25.4 / $this->img_dpi)); // 14 x 16px
8851 $h = ($info['h'] * (25.4 / $this->img_dpi)); // 14 x 16px
8874 $w = ($info['w'] / Mpdf::SCALE) * (72 / $this->img_dpi);
8875 $h = ($info['h'] / Mpdf::SCALE) * (72 / $this->img_dpi);
193 var $img_dpi; global() variable in Mpdf\\Mpdf
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DSvg.php218 $this->kp = 72 / $mpdf->img_dpi; // constant To convert pixels to pts/PDF units