我正在使用endroid repository(QrCode.php
)
public function render($filename = 'Images', $format = 'png')
{
$this->create();
if ($format == 'jpg') {
$format = 'jpeg';
}
if (!in_array($format, $this->image_types_available)) {
$format = $this->image_type;
}
if (!function_exists('image'.$format)) {
throw new ImageFunctionUnknownException('QRCode: function image'.$format.' does not exists.');
}
if ($filename === null) {
$success = call_user_func('image'.$format, $this->image);
} else {
$success = call_user_func_array('image'.$format, array($this->image, $filename));
}
if ($success === false) {
throw new ImageFunctionFailedException('QRCode: function image'.$format.' failed.');
}
return $this;
我正在尝试将QR码保存到名为images的文件夹中
它与QR码生成文件(QRCode.php
)位于同一文件夹中。
到目前为止它还没有工作,我没有看到文件夹中创建的任何图片,我不知道如何调试它。