Home
last modified time | relevance | path

Searched refs:orig_srcpath (Results 1 – 7 of 7) sorted by relevance

/plugin/dw2pdf/
H A DDokuImageProcessorDecorator.php21 $orig_srcpath = false,
24 [$file, $orig_srcpath] = self::adjustGetImageLinks($file, $orig_srcpath); argument
26 return parent::getImage($file, $firsttime, $allowvector, $orig_srcpath, $interpolation);
30 public static function adjustGetImageLinks($file, $orig_srcpath)
107 $orig_srcpath = $local;
111 return [$file, $orig_srcpath];
17 getImage(& $file, $firsttime = true, $allowvector = true, $orig_srcpath = false, $interpolation = false) global() argument
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DImageProcessor.php142 public function getImage(&$file, $firsttime = true, $allowvector = true, $orig_srcpath = false, $interpolation = false)
153 if ($wrapperChecker->hasBlacklistedStreamWrapper($orig_srcpath)) { argument
154 return $this->imageError($orig_srcpath, $firsttime, 'File contains an invalid stream. Only ' . implode(', ', $wrapperChecker->getWhitelistedStreamWrappers()) . ' streams are allowed.');
182 if ($firsttime && $orig_srcpath) {
183 // If orig_srcpath is a relative file path (and not a URL), then it needs to be URL decoded
184 if (strpos($orig_srcpath, 'data:') !== 0) {
185 $orig_srcpath = str_replace(' ', '%20', $orig_srcpath);
187 if (!preg_match('/^(http|ftp)/', $orig_srcpath)) {
188 $orig_srcpath
[all...]
H A DSvg.php278 $orig_srcpath = '';
280 $orig_srcpath = $srcpath;
286 $info = $this->imageProcessor->getImage($srcpath, true, false, $orig_srcpath, $this->mpdf->interpolateImages);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DInput.php148 $orig_srcpath = $attr['ORIG_SRC'];
218 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);
H A DMeter.php229 $orig_srcpath = $srcpath;
232 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);
H A DImg.php31 $orig_srcpath = (isset($attr['ORIG_SRC']) ? $attr['ORIG_SRC'] : '');
277 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath, $interpolation); // mPDF 6
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php8842 $orig_srcpath = $file;
8845 $info = $this->imageProcessor->getImage($file, true, $allowvector, $orig_srcpath);
13763 $orig_srcpath = '';
13774 $orig_srcpath = $path;
13794 if ($orig_srcpath) {
13795 $attr['ORIG_SRC'] = $orig_srcpath;
15374 $orig_srcpath = $listitemimage;
15381 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);