这是条形码生成随机条形码的代码
$barcode = substr(number_format(time() * rand(),0,'',''),0,13);
$barcodeimg = $barcode.".png";
$stud->generateBarcodeImage($barcode,20,"horizontal","code128","");
我没有得到这段代码,我会对此进行研究,但我无法弄清楚
// Draw barcode to the screen
header('Content-type: image/png');
imagepng($image, "barcode/".$text.".png");
imagedestroy($image);
答案 0 :(得分:0)
假设您已将图像数据正确保存在$image
中。而且您想将图像输出到屏幕上,不要在imagepng($image);