我想知道是否可以将条形码保存在数据库中。我正在使用“Code 39”类型的条形码。条形码将从变量生成。如果可能的话,我想将它保存到数据库中。我已经从“ http://www.barcodebakery.com ”下载了库。谁能给我建议如何做到这一点?
代码可以很好地显示图像,稍后我将使用条形码扫描仪查找产品,每个产品都包含条形码。
<?php
require_once('class/BCGFontFile.php');
require_once('class/BCGColor.php');
require_once('class/BCGDrawing.php');
require('class/BCGcode39.barcode.php');
$font = new BCGFontFile('font/Arial.ttf', 18);
$color_black = new BCGColor(0, 0, 0);
$color_white = new BCGColor(255, 255, 255);
$barcode="3RC402A00";
// Barcode Part
$code = new BCGcode39();
$code->setScale(2);
$code->setThickness(30);
$code->setForegroundColor($color_black);
$code->setBackgroundColor($color_white);
$code->setFont($font);
$code->parse($barcode);
// Drawing Part
$drawing = new BCGDrawing('', $color_white);
$drawing->setBarcode($code);
$drawing->draw();
header('Content-Type: image/png');
$drawing->finish(BCGDrawing::IMG_FORMAT_PNG);
?>
任何建议表示赞赏。谢谢