Lines Matching refs:image
288 $image = imagecreate($width, $height);
289 $transparent = imagecolorallocate($image, 0, 0, 0);
290 imagecolortransparent($image, $transparent);
291 imagefilledrectangle($image, 0, 0, $width, $height, $transparent);
295 $text_color = $this->imageColor($image, '000000');
297 'M' => $this->imageColor($image, 'b1cff0'),
298 'F' => $this->imageColor($image, 'e9daf1'),
299 'U' => $this->imageColor($image, 'eeeeee'),
324 $image,
347 $image,
412 $image,
462 imagepng($image);
478 * @param GdImage $image
483 protected function imageColor(GdImage $image, string $css_color): int argument
486 $image,