| /plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
| D | ServiceFactory.php | 50 $colorConverter = new ColorConverter($mpdf, $colorModeConverter, $colorSpaceRestrictor); 63 …$cssManager = new CssManager($mpdf, $cache, $sizeConverter, $colorConverter, $remoteContentFetcher… 71 $gradient = new Gradient($mpdf, $sizeConverter, $colorConverter, $writer); 75 $form = new Form($mpdf, $otl, $colorConverter, $writer, $formWriter); 84 $colorConverter, 101 $colorConverter, 145 'colorConverter' => $colorConverter,
|
| D | Form.php | 42 private $colorConverter; variable in Mpdf\\Form 104 …public function __construct(Mpdf $mpdf, Otl $otl, ColorConverter $colorConverter, BaseWriter $writ… argument 108 $this->colorConverter = $colorConverter; 194 $this->mpdf->SetTColor($this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings)); 222 $this->mpdf->SetTColor($this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings)); 249 $this->mpdf->SetFColor($this->colorConverter->convert(225, $this->mpdf->PDFAXwarnings)); 250 $this->mpdf->SetTColor($this->colorConverter->convert(127, $this->mpdf->PDFAXwarnings)); 252 $this->mpdf->SetFColor($this->colorConverter->convert(225, $this->mpdf->PDFAXwarnings)); 253 $this->mpdf->SetTColor($this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings)); 255 $this->mpdf->SetFColor($this->colorConverter->convert(250, $this->mpdf->PDFAXwarnings)); [all …]
|
| D | Tag.php | 53 private $colorConverter; variable in Mpdf\\Tag 85 ColorConverter $colorConverter, argument 97 $this->colorConverter = $colorConverter; 118 $this->colorConverter,
|
| D | Gradient.php | 27 private $colorConverter; variable in Mpdf\\Gradient 34 …_construct(Mpdf $mpdf, SizeConverter $sizeConverter, ColorConverter $colorConverter, BaseWriter $w… argument 38 $this->colorConverter = $colorConverter; 642 $check = $this->colorConverter->convert($first[0], $this->mpdf->PDFAXwarnings); 728 $col = $this->colorConverter->convert($el[0], $this->mpdf->PDFAXwarnings); 730 $col = $this->colorConverter->convert(255, $this->mpdf->PDFAXwarnings); 768 $checkCol = $this->colorConverter->convert($first[0], $this->mpdf->PDFAXwarnings); 872 $col = $this->colorConverter->convert($el[0], $this->mpdf->PDFAXwarnings); 874 $col = $this->colorConverter->convert(255, $this->mpdf->PDFAXwarnings); 969 $cor = $this->colorConverter->convert($bgr[1], $this->mpdf->PDFAXwarnings); [all …]
|
| D | DirectWrite.php | 29 private $colorConverter; variable in Mpdf\\DirectWrite 31 …ion __construct(Mpdf $mpdf, Otl $otl, SizeConverter $sizeConverter, ColorConverter $colorConverter) argument 36 $this->colorConverter = $colorConverter; 505 $fc = $this->colorConverter->convert($fill, $this->mpdf->PDFAXwarnings); 506 $tc = $this->colorConverter->convert($color, $this->mpdf->PDFAXwarnings);
|
| D | CssManager.php | 32 private $colorConverter; variable in Mpdf\\CssManager 55 …f $mpdf, Cache $cache, SizeConverter $sizeConverter, ColorConverter $colorConverter, RemoteContent… argument 65 $this->colorConverter = $colorConverter; 556 elseif (is_array($this->colorConverter->convert($prop[0], $this->mpdf->PDFAXwarnings))) { 1099 …$new['col'] = $this->colorConverter->convert(preg_replace('/\*/', ',', $p[2]), $this->mpdf->PDFAXw… 1105 …$new['col'] = $this->colorConverter->convert(preg_replace('/\*/', ',', $p[3]), $this->mpdf->PDFAXw… 1108 …$new['col'] = $this->colorConverter->convert(preg_replace('/\*/', ',', $p[4]), $this->mpdf->PDFAXw… 1113 $new['col'] = $this->colorConverter->convert('#888888', $this->mpdf->PDFAXwarnings); 1159 …$new['col'] = $this->colorConverter->convert(preg_replace('/\*/', ',', $p[2]), $this->mpdf->PDFAXw… 1163 …$new['col'] = $this->colorConverter->convert(preg_replace('/\*/', ',', $p[3]), $this->mpdf->PDFAXw… [all …]
|
| D | Mpdf.php | 917 private $colorConverter; variable in Mpdf\\Mpdf 1116 …$this->defTextColor = $this->TextColor = $this->SetTColor($this->colorConverter->convert(0, $this-… 1117 …$this->defDrawColor = $this->DrawColor = $this->SetDColor($this->colorConverter->convert(0, $this-… 1118 …$this->defFillColor = $this->FillColor = $this->SetFColor($this->colorConverter->convert(255, $thi… 1495 $this->SetFColor($this->colorConverter->convert(255, $this->PDFAXwarnings)); 3431 $col = $this->colorConverter->convert($r, $this->PDFAXwarnings); 3433 …$col = $this->colorConverter->convert('rgb(' . $r . ',' . $g . ',' . $b . ')', $this->PDFAXwarning… 3435 …$col = $this->colorConverter->convert('cmyk(' . $r . ',' . $g . ',' . $b . ',' . $col4 . ')', $thi… 3446 $col = $this->colorConverter->convert($r, $this->PDFAXwarnings); 3448 …$col = $this->colorConverter->convert('rgb(' . $r . ',' . $g . ',' . $b . ')', $this->PDFAXwarning… [all …]
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/ |
| D | Tag.php | 61 protected $colorConverter; variable in Mpdf\\Tag\\Tag 94 ColorConverter $colorConverter, argument 106 $this->colorConverter = $colorConverter;
|
| D | Annotation.php | 69 $cor = $this->colorConverter->convert($attr['COLOR'], $this->mpdf->PDFAXwarnings); 73 $objattr['COLOR'] = $this->colorConverter->convert('yellow', $this->mpdf->PDFAXwarnings); 76 $objattr['COLOR'] = $this->colorConverter->convert('yellow', $this->mpdf->PDFAXwarnings);
|
| D | TextArea.php | 72 …$objattr['color'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarning… 86 …$objattr['border-col'] = $this->colorConverter->convert($properties['BORDER-TOP-COLOR'], $this->mp… 89 …$objattr['background-col'] = $this->colorConverter->convert($properties['BACKGROUND-COLOR'], $this…
|
| D | Hr.php | 73 …$objattr['color'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarning… 75 $objattr['color'] = $this->colorConverter->convert($attr['COLOR'], $this->mpdf->PDFAXwarnings);
|
| D | Columns.php | 23 $this->colorConverter,
|
| D | Input.php | 78 …$objattr['color'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarning… 89 …$objattr['border-col'] = $this->colorConverter->convert($properties['BORDER-TOP-COLOR'], $this->mp… 92 …$objattr['background-col'] = $this->colorConverter->convert($properties['BACKGROUND-COLOR'], $this…
|
| D | BarCode.php | 170 …$objattr['color'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarning… 175 …$objattr['bgcolor'] = $this->colorConverter->convert($properties['BACKGROUND-COLOR'], $this->mpdf-…
|
| D | TextCircle.php | 99 …$objattr['color'] = $this->colorConverter->convert($properties['COLOR'], $this->mpdf->PDFAXwarning… 203 …$objattr['bgcolor'] = $this->colorConverter->convert($properties['BACKGROUND-COLOR'], $this->mpdf-…
|
| D | Td.php | 82 $c['border_details']['R']['c'] = $this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings); 83 $c['border_details']['L']['c'] = $this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings); 84 $c['border_details']['T']['c'] = $this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings); 85 $c['border_details']['B']['c'] = $this->colorConverter->convert(0, $this->mpdf->PDFAXwarnings);
|
| D | Select.php | 27 …$this->mpdf->selectoption['COLOR'] = $this->colorConverter->convert($properties['COLOR'], $this->m…
|
| D | Img.php | 251 …$objattr['bgcolor'] = $this->colorConverter->convert($properties['BACKGROUND-COLOR'], $this->mpdf-… 443 $objattr['COLOR'] = $this->colorConverter->convert('yellow', $this->mpdf->PDFAXwarnings);
|
| D | InlineTag.php | 36 $objattr['COLOR'] = $this->colorConverter->convert('yellow', $this->mpdf->PDFAXwarnings);
|
| /plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/ |
| D | Wmf.php | 19 private $colorConverter; variable in Mpdf\\Image\\Wmf 26 public function __construct(Mpdf $mpdf, ColorConverter $colorConverter) argument 29 $this->colorConverter = $colorConverter; 125 …$wmfdata .= $this->mpdf->SetFColor($this->colorConverter->convert('rgb(' . $obj['r'] . ',' . $obj[… 152 …$wmfdata .= $this->mpdf->SetDColor($this->colorConverter->convert('rgb(' . $obj['r'] . ',' . $obj[…
|
| D | ImageProcessor.php | 46 private $colorConverter; variable in Mpdf\\Image\\ImageProcessor 103 ColorConverter $colorConverter, argument 116 $this->colorConverter = $colorConverter; 263 …, $this->otl, $this->cssManager, $this, $this->sizeConverter, $this->colorConverter, $this->langua… 1032 $this->wmf = new Wmf($this->mpdf, $this->colorConverter);
|
| D | Svg.php | 56 public $colorConverter; variable in Mpdf\\Image\\Svg 182 ColorConverter $colorConverter, argument 192 $this->colorConverter = $colorConverter; 1370 $col = $this->colorConverter->convert($critere_style['color'], $this->mpdf->PDFAXwarnings); 1382 $col = $this->colorConverter->convert($critere_style['fill'], $this->mpdf->PDFAXwarnings); 1411 $col = $this->colorConverter->convert($critere_style['color'], $this->mpdf->PDFAXwarnings); 1425 $col = $this->colorConverter->convert($critere_style['stroke'], $this->mpdf->PDFAXwarnings); 2447 $col = $this->colorConverter->convert($current_style['fill'], $this->mpdf->PDFAXwarnings); 2455 $scol = $this->colorConverter->convert($current_style['stroke'], $this->mpdf->PDFAXwarnings); 2624 $col = $this->colorConverter->convert($current_style['fill'], $this->mpdf->PDFAXwarnings); [all …]
|