0

我想显示来自 url 的 qrcode。我尝试了这个,但那不起作用,我认为我的代码没有将 url 保存在我的计算机上,他失败了,他尝试打开 qrcode

    $imageUrl = 'https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=toto';
    $imagePath = sys_get_temp_dir() . '\\' . basename($imageUrl);
    file_put_contents($imagePath, file_get_contents($imageUrl));
    $image = Zend_Pdf_Image::imageWithPath($imagePath);
    unlink($imagePath);

    $page = $this->newPage($settings);
    $page->drawImage($image, 0, 842 - 153, 244, 842);

谢谢

4

1 回答 1

0

您遇到的问题是basenameURL 的,您尝试将其设置为文件名,这会导致类似 的C:\TEMP\chart?chs=150x150&cht=qr&chl=toto内容,这不是有效的文件名。
您也不能使用file_get_contents. 您将需要使用cURL. 像这样的东西应该可以完成这项工作:

$imageUrl = 'https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl=toto';
$imgPath = sys_get_temp_dir() . '/' . 'qr.png';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $imageUrl);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$raw = curl_exec($ch);

if (is_file($imgPath)) {
    unlink($imgPath);
}

$fp = fopen($imgPath, 'x');
fwrite($fp, $raw);
fclose($fp);

然后您可以使用$imgPath创建 PDF 图像。

于 2013-04-16T07:45:20.533 回答