// ...其他代码
if (empty($this->backgroundImages)) {
// if background images list is not set, use a color fill as a background
$image = imagecreatetruecolor($width, $height);
$bg = imagecolorallocate($image, 255, 255, 255); // 将背景颜色改为白色
$this->background = $bg;
imagefill($image, 0, 0, $bg);
} else {
// ...其他代码
}
你应该把你怎么改的发出来。
我是用的官方的验证码组件,代码有点长。看了半天感觉应该是CaptchaBuilder.php中的build里面的。
setBackgroundColor
这个时候你就需要一个 代码补全工具了,还有有一点点用的,这种情况
$builder->setBackgroundColor(255, 255, 255) 确实用了这个没有什么效果