使用Endroids代码生成器将QR代码保存到文件夹中

时间:2016-12-08 07:45:43

标签: php

我正在使用endroid repositoryQrCode.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)位于同一文件夹中。

到目前为止它还没有工作,我没有看到文件夹中创建的任何图片,我不知道如何调试它。

0 个答案:

没有答案