打开/include/helpers/image.helper.php文件
找到
@$ni = imagecreateTRUEcolor($ftoW,$ftoH);
在它下面加入
$color = imagecolorAllocate($ni,255,255,255);   
//分配一个白色的背景 imagefill($ni,0,0,$color);                
// 从左上角开始填充白色