Lines Matching refs:gd
26 $gd = $this->PlotPixelsGD($ThisFileInfo['bmp'], $truecolor);
27 return $gd;
705 $gd = @imagecreatetruecolor($imagewidth, $imageheight);
709 $gd = @imagecreate($imagewidth, $imageheight);
714 imagecolorallocate($gd, $r, $g, $b);
721 imagecolorallocate($gd, $r, $g, $b);
728 if (!is_resource($gd) && !(is_object($gd) && $gd instanceOf \GdImage)) {
739 $pixelcolor = imagecolorallocate($gd, $red, $green, $blue);
741 $pixelcolor = imagecolorclosest($gd, $red, $green, $blue);
743 imagesetpixel($gd, $col, $row, $pixelcolor);
746 return $gd;