众所周知,谷歌提供的免费API名为:developer.google.com
我正在寻找一种下载任何格式(jpg,png)的QR码图像的方法。 我正在创建动态网址,该网址会传递给Google API的 chl 属性。
示例:
<?php
$long_url = $row['urlinput']; //dynamic url is comming from database
echo '<div class="crop img-thumbnail img-responsive">
<img class=" crop" src="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl='.$long_url.'&choe=UTF-8" title="'.$long_url.'" />
</div>';
?>
示例输出:
我要实现的目标是:下载此QR码并将其保存到我的计算机中。
我使用:<a href="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chl='.$long_url.'" download>download</a>
,但似乎不起作用。
如果能提供任何指导或指导,那将是我的荣幸。