我正在尝试使用 PHP 创建一维条码。我已经能够使用谷歌图表 API 创建二维二维码,如下所示:
$size = $_REQUEST['size'];
$string = preg_replace('/\s+/','',$_REQUEST['content']);
$content = $string;//$_REQUEST['content'];
$correction = strtoupper($_REQUEST['correction']);
$encoding = $_REQUEST['encoding'];
//form google chart api link
$rootUrl = "https://chart.googleapis.com/chart?cht=qr&chs=$size&chl=$content&choe=$encoding&chld=$correction";
//print out the image
echo '<img src="'.$rootUrl.'">';
此代码仅生成 QR 码。但我需要条形码。我需要更改参数以将其显示为 1D 条形码吗?请注意我正在使用 PHP 语言并使用 Zxing 库解码数据。请帮助。谢谢