文件地址:app\controller\admin\v1\order\OtherOrder.php
$canvas->setImageUrl(public_path() . 'statics/qrcode/offlines.jpg')->setImageHeight(730)->setImageWidth(500)->pushImageValue();
文件地址:crmeb\utils\Canvas.php
switch ($this->imageType) {
case 'jpeg':
case 'jpg':
imagejpeg($image, public_path() . $save_file, 70);
break;
case 'png':
imagepng($image, public_path() . $save_file, 70);
break;
case 'gif':
imagegif($image, public_path() . $save_file, 70);
break;
default:
throw new \RuntimeException('Incorrect type set:' . $this->imageType);
}