Lines Matching refs:color

50 	 * @param string $color
55 public function restrictColorSpace($c, $color, &$PDFAXwarnings = [])
68 return $this->restrictRgbColorSpace($c, $color, $PDFAXwarnings);
70 return $this->restrictCmykColorSpace($c, $color, $PDFAXwarnings);
72 return $this->restrictRgbaColorSpace($c, $color, $PDFAXwarnings);
74 return $this->restrictCmykaColorSpace($c, $color, $PDFAXwarnings);
94 $PDFAXwarnings[] = "Spot color specified '" . $this->mpdf->spotColorIDs[$c[1]] . "' (converted to process color)";
110 * @param string $color
115 private function restrictRgbColorSpace($c, $color, &$PDFAXwarnings = [])
119 $PDFAXwarnings[] = "RGB color specified '" . $color . "' (converted to CMYK)";
133 * @param string $color
138 private function restrictCmykColorSpace($c, $color, &$PDFAXwarnings = [])
142 $PDFAXwarnings[] = "CMYK color specified '" . $color . "' (converted to RGB)";
156 * @param string $color
161 private function restrictRgbaColorSpace($c, $color, &$PDFAXwarnings = [])
165 $PDFAXwarnings[] = "RGB color with transparency specified '" . $color . "' (converted to CMYK without transparency)";
171 $PDFAXwarnings[] = "RGB color with transparency specified '" . $color . "' (converted to RGB without transparency)";
186 * @param string $color
191 private function restrictCmykaColorSpace($c, $color, &$PDFAXwarnings = [])
195 $PDFAXwarnings[] = "CMYK color with transparency specified '" . $color . "' (converted to RGB without transparency)";
201 $PDFAXwarnings[] = "CMYK color with transparency specified '" . $color . "' (converted to CMYK without transparency)";