Searched refs:orig_srcpath (Results 1 – 7 of 7) sorted by last modified time
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/ |
H A D | Svg.php | 278 $orig_srcpath = ''; 280 $orig_srcpath = $srcpath; 286 …$info = $this->imageProcessor->getImage($srcpath, true, false, $orig_srcpath, $this->mpdf->interpo…
|
H A D | ImageProcessor.php | 189 if ($firsttime && $orig_srcpath) { 191 if (strpos($orig_srcpath, 'data:') !== 0) { 192 $orig_srcpath = str_replace(' ', '%20', $orig_srcpath); 195 $orig_srcpath = $this->urldecodeParts($orig_srcpath); 200 if ($orig_srcpath && isset($this->mpdf->images[$orig_srcpath])) { 201 $file = $orig_srcpath; 202 return $this->mpdf->images[$orig_srcpath]; 209 if ($orig_srcpath && isset($this->mpdf->formobjects[$orig_srcpath])) { 210 $file = $orig_srcpath; 226 if ($orig_srcpath && $this->mpdf->basepathIsLocal && $check = @fopen($orig_srcpath, 'rb')) { [all …]
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/ |
H A D | Img.php | 31 $orig_srcpath = (isset($attr['ORIG_SRC']) ? $attr['ORIG_SRC'] : ''); 277 …$info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath, $interpolation); // m…
|
H A D | Meter.php | 229 $orig_srcpath = $srcpath; 232 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);
|
H A D | Input.php | 148 $orig_srcpath = $attr['ORIG_SRC']; 218 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | Mpdf.php | 8812 $orig_srcpath = $file; 8815 $info = $this->imageProcessor->getImage($file, true, $allowvector, $orig_srcpath); 13703 $orig_srcpath = ''; 13714 $orig_srcpath = $path; 13734 if ($orig_srcpath) { 13735 $attr['ORIG_SRC'] = $orig_srcpath; 15313 $orig_srcpath = $listitemimage; 15320 $info = $this->imageProcessor->getImage($srcpath, true, true, $orig_srcpath);
|
/plugin/dw2pdf/ |
H A D | DokuImageProcessorDecorator.php | 17 …public function getImage (&$file, $firsttime = true, $allowvector = true, $orig_srcpath = false, $… argument 18 list($file, $orig_srcpath) = self::adjustGetImageLinks($file, $orig_srcpath); 20 return parent::getImage($file, $firsttime, $allowvector, $orig_srcpath, $interpolation); 24 public static function adjustGetImageLinks($file, $orig_srcpath) { argument 89 $orig_srcpath = $local; 93 return [$file, $orig_srcpath];
|